Skip to main content
Module

x/simple_utility/mod.full.ts>jsonLoad

Simplify processing for Deno.
Go to Latest
function jsonLoad
import { jsonLoad } from "https://deno.land/x/simple_utility@v2.0.10/mod.full.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

import data from "./data.json" assert {type: "json"};
const json = await jsonLoad("./data.json", data);

Parameters

path: string
def: T

Returns

Promise<T>