UNPKG

@trackr/effects-gain

Version:

A subpackage of trackr that contains gain effects.

13 lines (12 loc) 339 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Configuration = void 0; class Configuration { constructor(stopWords = []) { this.stopWords = stopWords; } skipWord(word) { return this.stopWords.indexOf(word) !== -1; } } exports.Configuration = Configuration;