mirror of
https://codeberg.org/Kankys/NewLukasBlog.git
synced 2025-12-06 13:26:05 +00:00
12 lines
162 B
JavaScript
12 lines
162 B
JavaScript
"use strict";
|
|
|
|
module.exports = function(it) {
|
|
const { path, message } = it;
|
|
|
|
return `
|
|
Failed to read JSON file at ${path}:
|
|
|
|
${message}
|
|
`.trimStart();
|
|
};
|