![JAR search and dependency download from the Maven repository](/logo.png)
package.dist.array.es.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
A collection of utility functions for animations.
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