mirror of
https://github.com/tvytlx/ai-agent-deep-dive.git
synced 2026-04-08 01:54:48 +08: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
|