source: node_modules/lodash/_baseLt.js@ 65b6638

main
Last change on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 354 bytes
Line 
1/**
2 * The base implementation of `_.lt` which doesn't coerce arguments.
3 *
4 * @private
5 * @param {*} value The value to compare.
6 * @param {*} other The other value to compare.
7 * @returns {boolean} Returns `true` if `value` is less than `other`,
8 * else `false`.
9 */
10function baseLt(value, other) {
11 return value < other;
12}
13
14module.exports = baseLt;
Note: See TracBrowser for help on using the repository browser.