UNPKG

oberknecht-utils

Version:
20 lines (19 loc) 798 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.arrayModifiers = void 0; const splice_1 = require("./arrayModifiers/splice"); const moveByIndex_1 = require("./arrayModifiers/moveByIndex"); const _1 = require("."); const push_1 = require("./arrayModifiers/push"); const remove_1 = require("./arrayModifiers/remove"); const filterByArray_1 = require("./arrayModifiers/filterByArray"); class arrayModifiers { static arrayInsert = _1.arrayInsert; static splice = splice_1.splice; static moveByIndex = moveByIndex_1.moveByIndex; static removeDuplicates = _1.removeArrayDuplicates; static push = push_1.push; static remove = remove_1.remove; static filterByArray = filterByArray_1.filterByArray; } exports.arrayModifiers = arrayModifiers;