Bump to v4.11.2.

This commit is contained in:
John-David Dalton
2016-04-19 22:17:16 -07:00
parent 29c408ee8a
commit ccdfca5392
86 changed files with 714 additions and 447 deletions

7
lt.js
View File

@@ -1,4 +1,4 @@
define([], function() {
define(['./_baseLt', './_createRelationalOperation'], function(baseLt, createRelationalOperation) {
/**
* Checks if `value` is less than `other`.
@@ -11,6 +11,7 @@ define([], function() {
* @param {*} other The other value to compare.
* @returns {boolean} Returns `true` if `value` is less than `other`,
* else `false`.
* @see _.gt
* @example
*
* _.lt(1, 3);
@@ -22,9 +23,7 @@ define([], function() {
* _.lt(3, 1);
* // => false
*/
function lt(value, other) {
return value < other;
}
var lt = createRelationalOperation(baseLt);
return lt;
});