File size: 126 Bytes
06227db |
1 2 3 4 5 6 |
'use strict'
const compare = require('./compare')
const eq = (a, b, loose) => compare(a, b, loose) === 0
module.exports = eq
|
06227db |
1 2 3 4 5 6 |
'use strict'
const compare = require('./compare')
const eq = (a, b, loose) => compare(a, b, loose) === 0
module.exports = eq
|