mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
Bump to v3.9.0.
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
var SetCache = require('./SetCache'),
|
||||
constant = require('../utility/constant'),
|
||||
isNative = require('../lang/isNative');
|
||||
getNative = require('./getNative');
|
||||
|
||||
/** Native method references. */
|
||||
var Set = isNative(Set = global.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');
|
||||
|
||||
/**
|
||||
* Creates a `Set` cache object to optimize linear searches of large arrays.
|
||||
|
||||
Reference in New Issue
Block a user