File size: 213 Bytes
bc20498 |
1 2 3 4 5 6 7 8 |
/**
* @param {string} text TOML text to parse
* @returns {object} the resulting JS object
*/
export const parse = async (text) => (
await import(/* webpackIgnore: true */'./3rd-party/toml.js')
).parse(text);
|