Bump to v1.0.2.

This commit is contained in:
jdalton
2013-02-18 03:13:40 -07:00
parent 2459a53350
commit 7467a2a2eb
11 changed files with 1035 additions and 1126 deletions

10
dist/lodash.js vendored
View File

@@ -1,11 +1,11 @@
/**
* @license
* Lo-Dash 1.0.1 (Custom Build) <http://lodash.com/>
* Lo-Dash 1.0.2 (Custom Build) <https://lodash.com/>
* Build: `lodash modern -o ./dist/lodash.js`
* Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.4.4 <http://underscorejs.org/>
* Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud Inc.
* Available under MIT license <http://lodash.com/license>
* Available under MIT license <https://lodash.com/license>
*/
;(function(window, undefined) {
@@ -1644,7 +1644,7 @@
* _.isPlainObject({ 'name': 'moe', 'age': 40 });
* // => true
*/
var isPlainObject = function(value) {
var isPlainObject = !getPrototypeOf ? shimIsPlainObject : function(value) {
if (!(value && typeof value == 'object')) {
return false;
}
@@ -4442,7 +4442,7 @@
* build and using precompiled templates, or loading Lo-Dash in a sandbox.
*
* For more information on precompiling templates see:
* http://lodash.com/#custom-builds
* https://lodash.com/#custom-builds
*
* For more information on Chrome extension sandboxes see:
* http://developer.chrome.com/stable/extensions/sandboxingEval.html
@@ -4916,7 +4916,7 @@
* @memberOf _
* @type String
*/
lodash.VERSION = '1.0.1';
lodash.VERSION = '1.0.2';
// add "Chaining" functions to the wrapper
lodash.prototype.toString = wrapperToString;