Urara-Blog/node_modules/.pnpm-store/v3/files/c9/e379191c265d87cf1dd3b1bdb0ba88688781be0bf2125c1ed246437a220a8b0a385ae3c720cb30dc9c4ae57867ea5e2c09ed263ef25c7988c77b0f6f11bdfc
2022-08-14 01:14:53 +08:00

14 lines
357 B
Text

/**
* The base implementation of `_.gt` which doesn't coerce arguments.
*
* @private
* @param {*} value The value to compare.
* @param {*} other The other value to compare.
* @returns {boolean} Returns `true` if `value` is greater than `other`,
* else `false`.
*/
function baseGt(value, other) {
return value > other;
}
module.exports = baseGt;