Skip to content
This repository was archived by the owner on Jun 20, 2025. It is now read-only.

Releases: commercetools/underscore-mixins

v0.1.4

28 Apr 16:12

Choose a tag to compare

Fix:

  • batchList leaks memory if array is too big 07ab0ce

v0.1.2

02 Dec 09:27

Choose a tag to compare

  • enhance parseQuery to handle multiple params with same key 3d33d72
query = 'where=name%20%3D%20%22Foo%22&staged=true&limit=100&offset=2'
_.parseQuery(query)
# => {where: 'name%20%3D%20%22Foo%22', staged: 'true', limit: '100', offset: '2'}

query = 'foo=bar1&foo=bar2'
_.parseQuery(query)
# => {foo: ['bar1', 'bar2']}

v0.1.1

02 Dec 09:25

Choose a tag to compare

  • introduce batchList mixin f15b2f3