import { jsonLoad } from "https://deno.land/x/simple_utility@v2.0.9/src/deno/json.ts";
Read JSON file and convert to object. If JSON file does not exist create new file with default value. Argument default value also act as type definition.
Examples
Example 1
Example 1
import data from "./data.json" assert {type: "json"};
const json = await jsonLoad("./data.json", data);
Parameters
def: T