isnt.js 181 B

123456789101112
  1. var is = require('./is');
  2. /**
  3. * Check if both values are not identical/egal
  4. */
  5. function isnt(x, y){
  6. return !is(x, y);
  7. }
  8. module.exports = isnt;