mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-24 07:39:13 +08:00
11 lines
162 B
Text
11 lines
162 B
Text
"use strict";
|
|
|
|
module.exports = function(it) {
|
|
const { path, message } = it;
|
|
|
|
return `
|
|
Failed to read JSON file at ${path}:
|
|
|
|
${message}
|
|
`.trimStart();
|
|
};
|