зеркало из https://github.com/microsoft/ace.git
Fixes #57: Array extensions shouldn't be enumerable
This commit is contained in:
Родитель
f0fac6569e
Коммит
17cbcb3477
|
@ -38,4 +38,8 @@ Array.prototype.peek = function () {
|
||||||
return this[this.length - 1];
|
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 = {};
|
module.exports = {};
|
||||||
|
|
Загрузка…
Ссылка в новой задаче