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