"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.assertChannelsCount = assertChannelsCount;
functionassertChannelsCount(channels) {
if (channels <= 0) {
thrownewTypeError('The number of channels must be 1 or more');
}
}