Files
story-studio/remotion/node_modules/@remotion/cli/dist/config/concurrency.js
2026-02-21 10:33:18 +01:00

13 lines
402 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getConcurrency = exports.setConcurrency = void 0;
let currentConcurrency = null;
const setConcurrency = (newConcurrency) => {
currentConcurrency = newConcurrency;
};
exports.setConcurrency = setConcurrency;
const getConcurrency = () => {
return currentConcurrency;
};
exports.getConcurrency = getConcurrency;