Current File : //home/tradevaly/www/node_modules/moment/src/lib/utils/mod.js
export default function mod(n, x) {
    return ((n % x) + x) % x;
}