UNPKG

@terrazzo/parser

Version:

Parser/validator for the Design Tokens Community Group (DTCG) standard.

10 lines 350 B
import * as momoa from '@humanwhocodes/momoa'; /** Momoa’s default parser, with preferred settings. */ export function toMomoa(srcRaw) { return momoa.parse(typeof srcRaw === 'string' ? srcRaw : JSON.stringify(srcRaw, undefined, 2), { mode: 'jsonc', ranges: true, tokens: true, }); } //# sourceMappingURL=momoa.js.map