Rebuild files.

Former-commit-id: dd3db7be0213bfada5ab7d8593e233a9af4a9dd0
This commit is contained in:
John-David Dalton
2013-05-16 08:48:28 -07:00
parent 43fea34f61
commit d162eed4c7
6 changed files with 23 additions and 23 deletions

12
dist/lodash.compat.js vendored
View File

@@ -554,7 +554,7 @@
__p += '\n var ownIndex = -1,\n ownProps = objectTypes[typeof iterable] ? keys(iterable) : [],\n length = ownProps.length;\n\n while (++ownIndex < length) {\n index = ownProps[ownIndex];\n';
if (conditions.length) {
__p += ' if (' +
((__t = ( conditions.join(' && ') )) == null ? '' : __t) +
(conditions.join(' && ')) +
') {\n ';
}
__p +=
@@ -568,7 +568,7 @@
__p += '\n for (index in iterable) {\n';
if (obj.useHas) { conditions.push("hasOwnProperty.call(iterable, index)"); } if (conditions.length) {
__p += ' if (' +
((__t = ( conditions.join(' && ') )) == null ? '' : __t) +
(conditions.join(' && ')) +
') {\n ';
}
__p +=
@@ -5386,13 +5386,13 @@
lodash.tail = rest;
lodash.unique = uniq;
// add chain compat
lodash.chain = lodash;
lodash.prototype.chain = function() { return this; };
// add functions to `lodash.prototype`
mixin(lodash);
// add Underscore `_.chain` compat
lodash.chain = lodash;
lodash.prototype.chain = function() { return this; };
/*--------------------------------------------------------------------------*/
// add functions that return unwrapped values when chaining