1.0.8 • Published 3 years ago
iojson-ts v1.0.8
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 => {})