immutable-object icon indicating copy to clipboard operation
immutable-object copied to clipboard

JavaScript immutable object

Results 2 immutable-object issues
Sort by recently updated
recently updated
newest added
trafficstars

This changes `ImmutableObject.prototype.__isImmutableObject__` to be defined as a non-enumerable property of the ImmutableObject prototype instead of being defined by assignment (which results in an enumerable property).

`Object.create` is much slower than using the `new` operator in some versions of V8 (confirmed in Chrome 33 using V8 3.23, see [this jsperf](http://jsperf.com/object-create-vs-constructor-vs-object-literal/49)). This changes calls to `Object.create()` to...