mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-03 04:38:27 -05:00
6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
'use strict'
|
|
|
|
const compare = require('./compare')
|
|
const neq = (a, b, loose) => compare(a, b, loose) !== 0
|
|
module.exports = neq
|