• File: mod.js
  • Full Path: /var/www/nodejs/simo_meps_file_script/node_modules/math-intrinsics/mod.js
  • Date Modified: 02/28/2025 8:55 PM
  • File size: 218 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict';

var $floor = require('./floor');

/** @type {import('./mod')} */
module.exports = function mod(number, modulo) {
	var remain = number % modulo;
	return $floor(remain >= 0 ? remain : remain + modulo);
};