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

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

function divide( a, b ) {
    if(b===0)
        throw new DivideByZeroError();
    else
        return a / b;
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy