dunder
v0.1.1
Published
hot-swap inheritance for every engine
Downloads
27
Readme
dunder
hot-swap inheritance for every engine
API
dunder(object:Object):Object|null
returns the object prototypedunder(object:Object, proto:Object|null):object|Object
returns an object that inherits from the second argument
If the engine supports a descriptor to set the prototype chain, or the __proto__
, the object is not recreated, otherwise it's inherited and replicated on top using ES5+ descriptors for a uniformed behavior in IE10 and IE9 too.
// basics
var a = {}, b = {};
dunder(a) === Object.prototype; // true
// inline swap
a = dunder(a, b);
b.isPrototypeOf(a); // true
dunder(a) === b; // true
// hot-swap Zepto.js like
var libObj = dunder(
document.querySelectorAll(CSS),
MyAwesomeLibrary.prototype
);
That is pretty much it, except you might decide to make the environment safe, if needed, invoking free.
'__proto__' in Object.prototype; // true
dunder.free();
// only in certain cases and if possible
'__proto__' in Object.prototype; // false
THe list of engines able to get rid of proto as getter/setter is not known yet.