Skip to content

Releases: canjs/can-deparam

v1.2.3

23 Sep 17:50
Compare
Choose a tag to compare

Update the documentation by fixing the code block to run the example on CodePen.

Handle queries start with `#` or `?`

19 Sep 14:53
Compare
Choose a tag to compare

This removes ? and # characters from query parameters:
deparam("?foo=bar&number=1234"); // -> {"foo" : "bar", "number": 1234}
deparam("#foo[]=bar&foo[]=baz"); // -> '{"foo" : ["bar", "baz"]}

#18

QUNIT2 upgrade

28 May 18:18
Compare
Choose a tag to compare

This updates the tests to use QUnit@2.x.x.

#15

v1.2.0

04 Jul 05:00
Compare
Choose a tag to compare

Add "use strict" #11

v1.1.0

04 Jul 04:57
Compare
Choose a tag to compare

Add a deserialize function 447c65e

Updated docs and added cycle detection

31 Oct 20:48
Compare
Choose a tag to compare
  • Add a cycle detection script to test process #9
  • Update docs with new @parent & @collection #10

v1.0.1...v1.0.2