VisionFTF / express-admin / node_modules / moment / src / lib / utils / mod.js
mod.js
Raw
export default function mod(n, x) {
    return ((n % x) + x) % x;
}