UNPKG

node-audio-mixer

Version:

PCM audio mixer with customizable parameters

9 lines (8 loc) 275 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.assertChannelsCount = assertChannelsCount; function assertChannelsCount(channels) { if (channels <= 0) { throw new TypeError('The number of channels must be 1 or more'); } }