lukashoror

Results 1 comments of lukashoror

For me, the problem was custom prototype functions of Array: [https://stackoverflow.com/a/32773408/13123354](https://stackoverflow.com/a/32773408/13123354) My functions had been declared like: `Array.prototype.clone = function(...) ...` And now: ``` Object.defineProperty(Array.prototype, 'clone', { enumerable: false, value:...