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

scripts.node_modules.moment.src.lib.utils.abs-ceil.js Maven / Gradle / Ivy

The newest version!
export default function absCeil(number) {
    if (number < 0) {
        return Math.floor(number);
    } else {
        return Math.ceil(number);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy