DefinitelyTyped/types/cson-parser/cson-parser-tests.ts
2018-12-01 16:31:01 +01:00

6 lines
128 B
TypeScript

import * as CSON from 'cson-parser';
CSON.parse('[ 1, 2, a: "str" ]');
CSON.stringify({ domain: 'typescript.org' }, null, 4);