UNPKG

web-audio-test-api

Version:
13 lines (11 loc) 244 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = appendIfNotExists; function appendIfNotExists(list, value) { var index = list.indexOf(value); if (index === -1) { list.push(value); } }