UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

16 lines (15 loc) 618 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.mod = mod; const _operator_ts_1 = require("../_helpers/_operator.js"); function mod(a, b) { // discuss at: https://locutus.io/python/operator/mod/ // parity verified: Python 3.12 // original by: Kevin van Zonneveld (https://kvz.io) // note 1: Uses Python's modulo semantics, where the remainder follows the divisor sign. // example 1: mod(7, 3) // returns 1: 1 // example 2: mod(-7, 3) // returns 2: 2 return (0, _operator_ts_1.pythonMod)(a, b, 'mod'); }