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

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

There is a newer version: 2.14
Show newest version
export default function absFloor(number) {
    if (number < 0) {
        // -0 -> 0
        return Math.ceil(number) || 0;
    } else {
        return Math.floor(number);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy