Bump to v3.0.0.

This commit is contained in:
John-David Dalton
2015-01-10 12:55:03 -08:00
committed by jdalton
commit 5379c1996b
350 changed files with 12910 additions and 0 deletions

10
internal/metaMap.js Normal file
View File

@@ -0,0 +1,10 @@
import isNative from '../lang/isNative';
import root from './root';
/** Native method references. */
var WeakMap = isNative(WeakMap = root.WeakMap) && WeakMap;
/** Used to store function metadata. */
var metaMap = WeakMap && new WeakMap;
export default metaMap;