-
-
Save Raynos/1638059 to your computer and use it in GitHub Desktop.
Harmony WeakMap shim for ES5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Original - @Gozola. This is a reimplemented version (with a few bug fixes). | |
window.WeakMap = window.WeakMap || (function () { | |
var privates = Name() | |
return { | |
get: function (key, fallback) { | |
var store = privates(key) | |
return store.hasOwnProperty("value") ? | |
store.value : fallback | |
}, | |
set: function (key, value) { | |
privates(key).value = value | |
}, | |
has: function(key) { | |
return "value" in privates(key) | |
}, | |
"delete": function (key) { | |
return delete privates(key).value | |
} | |
} | |
function namespace(obj, key) { | |
var store = { identity: key }, | |
valueOf = obj.valueOf | |
Object.defineProperty(obj, "valueOf", { | |
value: function (value) { | |
return value !== key ? | |
valueOf.apply(this, arguments) : store | |
}, | |
writable: true | |
}) | |
return store | |
} | |
function Name() { | |
var key = {} | |
return function (obj) { | |
var store = obj.valueOf(key) | |
return store && store.identity === key ? | |
store : namespace(obj, key) | |
} | |
} | |
}()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @Krinkle & @FritsvanCampen