@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
17 lines • 505 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.inspected = inspected;
const util_1 = require("util");
function inspected(value, options = {}) {
return (0, util_1.inspect)(value, {
depth: Number.POSITIVE_INFINITY,
breakLength: Number.POSITIVE_INFINITY,
customInspect: true,
compact: false,
sorted: true,
showProxy: false,
showHidden: false,
...options,
});
}
//# sourceMappingURL=inspected.js.map
;