Skip to content

Version 1.2.1

Choose a tag to compare

@raouldeheer raouldeheer released this 02 Mar 16:32
· 323 commits to main since this release
646676d

New features:
Added file saving functions to string prototype
Added file saving and loading functions to intrinsic object String
Added json saving and loading functions to intrinsic object JSON

// load json with
const jsondata = await JSON.load("pathtojsonfile");
// save json with
JSON.save("pathtojsonfile", [{test: "Hello world"}]);