1234567891011121314151617181920 |
- "use strict";
- exports.__esModule = true;
- exports.getBatch = exports.setBatch = void 0;
- function defaultNoopBatch(callback) {
- callback();
- }
- let batch = defaultNoopBatch;
- const setBatch = newBatch => batch = newBatch;
- exports.setBatch = setBatch;
- const getBatch = () => batch;
- exports.getBatch = getBatch;
|