assertthat
Version:
assertthat provides fluent TDD.
9 lines (8 loc) • 401 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.prettyPrintSymbolDiff = void 0;
const prettyPrintStringDiff_1 = require("../forStrings/prettyPrintStringDiff");
const prettyPrintSymbolDiff = function (diff) {
return `Symbol(${(0, prettyPrintStringDiff_1.prettyPrintStringDiff)(diff.descriptionDiff)})`;
};
exports.prettyPrintSymbolDiff = prettyPrintSymbolDiff;