Skip to content

v1.3.0

Latest
Compare
Choose a tag to compare
@crookse crookse released this 27 Nov 00:22
· 14 commits to main since this release

Requirements

  • If using Node, then use Node v14+
  • If using Deno, then use Deno v1.16+

Updates

  • Allow accio() call to take in JSON string or object. Example:
    const resultFromString = accio(`{"hello": "world"}`);
    const resultFromObject = accio({hello: "world"});