UNPKG

ethiopic-js

Version:

Converts Ethiopian calendar dates into Gregorian and vice versa.

11 lines (9 loc) 251 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); // modulo (%) for non integer numbers var mod = function mod(amount, numerator) { return amount - numerator * Math.floor(amount / numerator); }; exports.mod = mod;