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

prompto.intrinsic.multiplyArray.js Maven / Gradle / Ivy

The newest version!
function multiplyArray(items, count) {
    var result = [];
    while(--count>=0) {
        result = result.concat(items);
    }
    return result;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy