You need to sign in or sign up before continuing.
neq.js 114 Bytes
const compare = require('./compare')
const neq = (a, b, loose) => compare(a, b, loose) !== 0
module.exports = neq