dep: switch to @iarna/toml over toml
This commit is contained in:
18
node_modules/@iarna/toml/parse-string.js
generated
vendored
Executable file
18
node_modules/@iarna/toml/parse-string.js
generated
vendored
Executable file
@@ -0,0 +1,18 @@
|
||||
'use strict'
|
||||
module.exports = parseString
|
||||
|
||||
const TOMLParser = require('./lib/toml-parser.js')
|
||||
const prettyError = require('./parse-pretty-error.js')
|
||||
|
||||
function parseString (str) {
|
||||
if (global.Buffer && global.Buffer.isBuffer(str)) {
|
||||
str = str.toString('utf8')
|
||||
}
|
||||
const parser = new TOMLParser()
|
||||
try {
|
||||
parser.parse(str)
|
||||
return parser.finish()
|
||||
} catch (err) {
|
||||
throw prettyError(err, str)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user