下面的concat不是在使用safari也不是IE,看起来像是新的Set不能使用,删除部分字符串后会有什么替代连接
var allSoundsMod = [].concat(_toConsumableArray(new Set(allSounds.map(function (sound) {
return sound.split('_')[0];
}))));
所以我用
修复了var allSoundsMod = [].concat(_toConsumableArray(allSounds.map(function (sound) {
return sound.split('_')[0];
})));