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