UNPKG

306 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const command_1 = require("@oclif/command");
4exports.concurrency = command_1.flags.build({
5 description: 'Number of operations to run at once',
6 default: 4,
7 multiple: false,
8 parse: input => parseInt(input, 10),
9});