PR-URL: https://github.com/nodejs/node/pull/58696 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
5 lines
128 B
JavaScript
5 lines
128 B
JavaScript
'use strict'
|
|
|
|
const compare = require('./compare')
|
|
const neq = (a, b, loose) => compare(a, b, loose) !== 0
|
|
module.exports = neq
|