iojson-ts
v1.0.8
Published
```npm npm install iojson-ts ```
Readme
Hello👋
How to use?
Install
npm install iojson-tsuninstall
npm uninstall iojson-tsexample
| function | data | fileName | return | | ---------- | ------------------ | ------------------------------- | ------------ | | exportJSON | a json format data | a string, name the exportd file | none | | importJSON | a json file | none | Promise |
import { exportJSON, importJSON } from 'iojson-ts';
const testJSON = {
a: 1
}
exportJSON(testJSON, "testName");
importJSON().then(data => {})