diff options
Diffstat (limited to 'school/node_modules/lodash/_baseGt.js')
-rw-r--r-- | school/node_modules/lodash/_baseGt.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/school/node_modules/lodash/_baseGt.js b/school/node_modules/lodash/_baseGt.js new file mode 100644 index 0000000..502d273 --- /dev/null +++ b/school/node_modules/lodash/_baseGt.js @@ -0,0 +1,14 @@ +/** + * 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; |