dleitee / valid.js

📝 A library for data validation.
MIT License
605 stars 31 forks source link

strict comparison #20

Closed mii9000 closed 9 years ago

mii9000 commented 9 years ago
 function isTrue(value) {
   return value == true;
 }

console.log( isTrue( 1 ) ); => true

dleitee commented 9 years ago

Great!