Sha256: 66854d33e10ee86969f206173cb0d37f2c67f2f8566c7d48dce17f400c53ec90
Contents?: true
Size: 354 Bytes
Versions: 274
Compression:
Stored size: 354 Bytes
Contents
/** * 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;
Version data entries
274 entries across 272 versions & 30 rubygems