Version 1.2.1
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"}]);