mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-31 11:18:23 -05:00
6 lines
127 B
JavaScript
6 lines
127 B
JavaScript
'use strict'
|
|
|
|
const compare = require('./compare')
|
|
const lte = (a, b, loose) => compare(a, b, loose) <= 0
|
|
module.exports = lte
|