Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7467a2a

Browse files
committed
Bump to v1.0.2.
1 parent 2459a53 commit 7467a2a

File tree

11 files changed

+1023
-1114
lines changed

11 files changed

+1023
-1114
lines changed

README.md

Lines changed: 46 additions & 194 deletions
Large diffs are not rendered by default.

dist/lodash.compat.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
22
* @license
3-
* Lo-Dash 1.0.1 (Custom Build) <http://lodash.com/>
3+
* Lo-Dash 1.0.2 (Custom Build) <https://lodash.com/>
44
* Build: `lodash -o ./dist/lodash.compat.js`
55
* Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
66
* Based on Underscore.js 1.4.4 <http://underscorejs.org/>
77
* Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud Inc.
8-
* Available under MIT license <http://lodash.com/license>
8+
* Available under MIT license <https://lodash.com/license>
99
*/
1010
;(function(window, undefined) {
1111

@@ -4592,7 +4592,7 @@
45924592
* build and using precompiled templates, or loading Lo-Dash in a sandbox.
45934593
*
45944594
* For more information on precompiling templates see:
4595-
* http://lodash.com/#custom-builds
4595+
* https://lodash.com/#custom-builds
45964596
*
45974597
* For more information on Chrome extension sandboxes see:
45984598
* http://developer.chrome.com/stable/extensions/sandboxingEval.html
@@ -5066,7 +5066,7 @@
50665066
* @memberOf _
50675067
* @type String
50685068
*/
5069-
lodash.VERSION = '1.0.1';
5069+
lodash.VERSION = '1.0.2';
50705070

50715071
// add "Chaining" functions to the wrapper
50725072
lodash.prototype.toString = wrapperToString;

dist/lodash.compat.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lodash.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
22
* @license
3-
* Lo-Dash 1.0.1 (Custom Build) <http://lodash.com/>
3+
* Lo-Dash 1.0.2 (Custom Build) <https://lodash.com/>
44
* Build: `lodash modern -o ./dist/lodash.js`
55
* Copyright 2012-2013 The Dojo Foundation <http://dojofoundation.org/>
66
* Based on Underscore.js 1.4.4 <http://underscorejs.org/>
77
* Copyright 2009-2013 Jeremy Ashkenas, DocumentCloud Inc.
8-
* Available under MIT license <http://lodash.com/license>
8+
* Available under MIT license <https://lodash.com/license>
99
*/
1010
;(function(window, undefined) {
1111

@@ -1644,7 +1644,7 @@
16441644
* _.isPlainObject({ 'name': 'moe', 'age': 40 });
16451645
* // => true
16461646
*/
1647-
var isPlainObject = function(value) {
1647+
var isPlainObject = !getPrototypeOf ? shimIsPlainObject : function(value) {
16481648
if (!(value && typeof value == 'object')) {
16491649
return false;
16501650
}
@@ -4442,7 +4442,7 @@
44424442
* build and using precompiled templates, or loading Lo-Dash in a sandbox.
44434443
*
44444444
* For more information on precompiling templates see:
4445-
* http://lodash.com/#custom-builds
4445+
* https://lodash.com/#custom-builds
44464446
*
44474447
* For more information on Chrome extension sandboxes see:
44484448
* http://developer.chrome.com/stable/extensions/sandboxingEval.html
@@ -4916,7 +4916,7 @@
49164916
* @memberOf _
49174917
* @type String
49184918
*/
4919-
lodash.VERSION = '1.0.1';
4919+
lodash.VERSION = '1.0.2';
49204920

49214921
// add "Chaining" functions to the wrapper
49224922
lodash.prototype.toString = wrapperToString;

0 commit comments

Comments
 (0)