Skip to content

Latest commit

 

History

History
79 lines (48 loc) · 1.63 KB

README.md

File metadata and controls

79 lines (48 loc) · 1.63 KB

Badge Deno    Badge Stars



GRAPH

Encoder / Decoder for .graph files.


Button Examples    Button Documentation



Preview


import * as Graph from 'https://deno.land/x/graph/mod.ts';

const text = await Deno.readTextFile('Example.graph');

const graph = Graph.parse(text);

const text = Graph.stringify(graph);

await Deno.writeTextFile('Example.graph',text);