UNPKG

gatsby

Version:
20 lines (19 loc) 660 B
"use strict"; exports.__esModule = true; exports.indentString = exports.formatErrorDetails = void 0; exports.pathToArray = pathToArray; const indentString = string => string.replace(/\n/g, `\n `); exports.indentString = indentString; const formatErrorDetails = errorDetails => Array.from(errorDetails.entries()).map(([name, details]) => `${name}: ${indentString(details.toString())}`).join(`\n`); exports.formatErrorDetails = formatErrorDetails; function pathToArray(path) { const flattened = []; let curr = path; while (curr) { flattened.push(curr.key); curr = curr.prev; } return flattened.reverse(); } //# sourceMappingURL=utils.js.map