@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
14 lines • 397 B
JavaScript
import { inspect } from 'node:util';
export function inspected(value, options = {}) {
return 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