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