arrRemove.js 311 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.arrRemove = void 0;
  4. function arrRemove(arr, item) {
  5. if (arr) {
  6. var index = arr.indexOf(item);
  7. 0 <= index && arr.splice(index, 1);
  8. }
  9. }
  10. exports.arrRemove = arrRemove;
  11. //# sourceMappingURL=arrRemove.js.map