assertthat
Version:
assertthat provides fluent TDD.
9 lines (8 loc) • 418 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.prettyPrintFunctionDiff = void 0;
const prettyPrintStringDiff_1 = require("../forStrings/prettyPrintStringDiff");
const prettyPrintFunctionDiff = function (diff) {
return (0, prettyPrintStringDiff_1.prettyPrintStringDiff)(diff.stringRepresentationDiff).slice(1, -1);
};
exports.prettyPrintFunctionDiff = prettyPrintFunctionDiff;