0.1.1 • Published 11 years ago

dunder v0.1.1

Weekly downloads
8
License
-
Repository
github
Last release
11 years ago

dunder

hot-swap inheritance for every engine

build status

API

  • dunder(object:Object):Object|null returns the object prototype
  • dunder(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.

0.1.1

11 years ago

0.1.0

11 years ago