mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-08 07:08:29 -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
|