source: trip-planner-front/node_modules/lodash/_baseGt.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 357 bytes
Line 
1/**
2 * The base implementation of `_.gt` 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 greater than `other`,
8 * else `false`.
9 */
10function baseGt(value, other) {
11 return value > other;
12}
13
14module.exports = baseGt;
Note: See TracBrowser for help on using the repository browser.