Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 287 Bytes

CHANGELOG.md

File metadata and controls

14 lines (11 loc) · 287 Bytes

0.3.0

BREAKING:

  • transformed the library into an npm package
  • updated jsonhilo dependency to 0.3.2
  • code edit required: .push(...) is now .chunk(...)
const s = JsonStrum(...)

s.push(...) // this will break
// to fix, change it to:
s.chunk(...) // this will work