DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
213 Bytes
/**
* @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);