diff options
Diffstat (limited to 'school/node_modules/lodash/_baseLt.js')
-rw-r--r-- | school/node_modules/lodash/_baseLt.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/school/node_modules/lodash/_baseLt.js b/school/node_modules/lodash/_baseLt.js new file mode 100644 index 0000000..8674d29 --- /dev/null +++ b/school/node_modules/lodash/_baseLt.js @@ -0,0 +1,14 @@ +/** + * The base implementation of `_.lt` 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 less than `other`, + * else `false`. + */ +function baseLt(value, other) { + return value < other; +} + +module.exports = baseLt; |