mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
Bump to v3.9.0.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
define(['./cachePush', '../lang/isNative', './root'], function(cachePush, isNative, root) {
|
||||
define(['./cachePush', './getNative', './root'], function(cachePush, getNative, root) {
|
||||
|
||||
/** Native method references. */
|
||||
var Set = isNative(Set = root.Set) && Set;
|
||||
var Set = getNative(root, 'Set');
|
||||
|
||||
/* Native method references for those with the same name as other `lodash` methods. */
|
||||
var nativeCreate = isNative(nativeCreate = Object.create) && nativeCreate;
|
||||
var nativeCreate = getNative(Object, 'create');
|
||||
|
||||
/**
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user