1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-27 07:45:41 +00:00
notes/node_modules/lodash/_baseGt.js

15 lines
357 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
/**
* 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;