mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-18 12:08:42 -05:00
6 lines
132 B
JavaScript
6 lines
132 B
JavaScript
'use strict'
|
|
|
|
const compare = require('./compare')
|
|
const compareLoose = (a, b) => compare(a, b, true)
|
|
module.exports = compareLoose
|