UNPKG

228 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.clearArray = void 0;
4function clearArray(array) {
5 while (array.length > 0) {
6 array.pop();
7 }
8}
9exports.clearArray = clearArray;