Fixes #57: Array extensions shouldn't be enumerable

This commit is contained in:
adnathan 2016-06-13 10:13:57 -07:00
Родитель f0fac6569e
Коммит 17cbcb3477
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -38,4 +38,8 @@ Array.prototype.peek = function () {
return this[this.length - 1];
};
Object.defineProperty(Array.prototype, "removeAt", { enumerable: false });
Object.defineProperty(Array.prototype, "remove", { enumerable: false });
Object.defineProperty(Array.prototype, "peek", { enumerable: false });
module.exports = {};