Bump to v3.0.0.

This commit is contained in:
John-David Dalton
2015-01-08 00:37:01 -08:00
committed by jdalton
commit 9b7c4d6761
349 changed files with 23184 additions and 0 deletions

10
internal/metaMap.js Normal file
View File

@@ -0,0 +1,10 @@
define(['../lang/isNative', './root'], function(isNative, root) {
/** Native method references. */
var WeakMap = isNative(WeakMap = root.WeakMap) && WeakMap;
/** Used to store function metadata. */
var metaMap = WeakMap && new WeakMap;
return metaMap;
});