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