All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.array.js Maven / Gradle / Ivy

There is a newer version: 10.17.0
Show newest version
export function addUniqueItem(array, item) {
    array.indexOf(item) === -1 && array.push(item);
}
export function removeItem(arr, item) {
    const index = arr.indexOf(item);
    index > -1 && arr.splice(index, 1);
}
//# sourceMappingURL=array.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy