新的Set构造函数不用于safari

时间:2017-06-05 09:37:43

标签: javascript

下面的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];
})));

0 个答案:

没有答案