UNPKG

162 BJavaScriptView Raw
1"use strict";
2
3module.exports = function(it) {
4 const { path, message } = it;
5
6 return `
7Failed to read JSON file at ${path}:
8
9${message}
10`.trimStart();
11};