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