UNPKG

@fabric-es/fabric-cqrs

Version:

Hyperledger Fabric middleware for event sourcing and cqrs pattern

11 lines 350 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.waitForSecond = void 0; const waitForSecond = async (second) => { const timer = new Promise((done) => { setTimeout(() => done(), second * 1000); }); await timer; }; exports.waitForSecond = waitForSecond; //# sourceMappingURL=waitForSecond.js.map