1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.mockUuid = void 0;
- function mockUuid() {
- let nextId = 0;
- return function () {
- return nextId++;
- };
- }
- exports.mockUuid = mockUuid;
- //# sourceMappingURL=test_helpers.js.map
|