Befor generating
This commit is contained in:
Generated
Vendored
+63
@@ -0,0 +1,63 @@
|
||||
"use strict";
|
||||
|
||||
const { ParserError } = require("../util/errors");
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* The order that this parser will run, in relation to other parsers.
|
||||
*
|
||||
* @type {number}
|
||||
*/
|
||||
order: 100,
|
||||
|
||||
/**
|
||||
* Whether to allow "empty" files. This includes zero-byte files, as well as empty JSON objects.
|
||||
*
|
||||
* @type {boolean}
|
||||
*/
|
||||
allowEmpty: true,
|
||||
|
||||
/**
|
||||
* Determines whether this parser can parse a given file reference.
|
||||
* Parsers that match will be tried, in order, until one successfully parses the file.
|
||||
* Parsers that don't match will be skipped, UNLESS none of the parsers match, in which case
|
||||
* every parser will be tried.
|
||||
*
|
||||
* @type {RegExp|string|string[]|function}
|
||||
*/
|
||||
canParse: ".json",
|
||||
|
||||
/**
|
||||
* Parses the given file as JSON
|
||||
*
|
||||
* @param {object} file - An object containing information about the referenced file
|
||||
* @param {string} file.url - The full URL of the referenced file
|
||||
* @param {string} file.extension - The lowercased file extension (e.g. ".txt", ".html", etc.)
|
||||
* @param {*} file.data - The file contents. This will be whatever data type was returned by the resolver
|
||||
* @returns {Promise}
|
||||
*/
|
||||
async parse (file) { // eslint-disable-line require-await
|
||||
let data = file.data;
|
||||
if (Buffer.isBuffer(data)) {
|
||||
data = data.toString();
|
||||
}
|
||||
|
||||
if (typeof data === "string") {
|
||||
if (data.trim().length === 0) {
|
||||
return; // This mirrors the YAML behavior
|
||||
}
|
||||
else {
|
||||
try {
|
||||
return JSON.parse(data);
|
||||
}
|
||||
catch (e) {
|
||||
throw new ParserError(e.message, file.url);
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
// data is already a JavaScript value (object, array, number, null, NaN, etc.)
|
||||
return data;
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user