resource-limits.js 109 B

12345678
  1. 'use strict';
  2. module.exports = () => {
  3. const array = [];
  4. while (true) {
  5. array.push([array]);
  6. }
  7. };