Skip to content

Releases: canjs/can-reflect

Handle decorated and builtIn types correctly

01 Aug 19:43
Compare
Choose a tag to compare

Handle serialization of decorated types correctly and simply return un-decorated built-in types such as dates or regex.

Reflexed Tooling

17 Jul 20:34
Compare
Choose a tag to compare

This patch release makes improvements to the build configuration and minor test fixes.

Do not update or assign deep Typed objects unless they ask for it.

02 Jul 00:16
Compare
Choose a tag to compare

Adds caching update / assign

30 Jun 19:01
Compare
Choose a tag to compare
v1.1.3

updating version

[update|assign][List|Map][Deep|] and serialize, and unwrap

30 Jun 18:47
Compare
Choose a tag to compare

Adds all the update / assign methods.

isConstructor works with functions without prototypes

23 Jun 21:58
Compare
Choose a tag to compare

isConstructorLike looks at non-enumerable properties

23 Jun 20:57
Compare
Choose a tag to compare

Fixed #18 ... make constructors like the following work:

SomeConstructor = function(){

}
SomeConstructor.prototype[symbol] = function(){ ... }
assignNonEnumerable( SomeConstructor.prototype, {anything: function(){}})