You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
157 B

  1. exports.isit= function(listPinsON, nPin){
  2. for(var i=0; i<listPinsON.length; i++)
  3. {
  4. if(listPinsON[i]==nPin)
  5. {
  6. return(true);
  7. }
  8. }
  9. return(false);
  10. }