renovate/lib/util/toml.ts

7 lines
185 B
TypeScript

import { getStaticTOMLValue, parseTOML } from 'toml-eslint-parser';
export function parse(input: string): unknown {
const ast = parseTOML(input);
return getStaticTOMLValue(ast);
}