astro-ghostcms/.pnpm-store/v3/files/37/f7b0ba3d32b4dc35146ca93ac32...

10 lines
168 B
Plaintext

'use strict';
var mod = require('../helpers/mod');
// https://262.ecma-international.org/5.1/#sec-5.2
module.exports = function modulo(x, y) {
return mod(x, y);
};