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

package.dist.array.es.js Maven / Gradle / Ivy

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

export { addUniqueItem, removeItem };




© 2015 - 2025 Weber Informatics LLC | Privacy Policy