archunit
Version:
ArchUnit TypeScript is an architecture testing library, to specify and assert architecture rules in your TypeScript app
14 lines • 372 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Utils = void 0;
/* eslint-disable @typescript-eslint/no-explicit-any */
class Utils {
static formatData(data) {
return JSON.stringify(data);
}
static parseData(input) {
return JSON.parse(input);
}
}
exports.Utils = Utils;
//# sourceMappingURL=utils.js.map
;