github-pages-deploy-action/node_modules/es-abstract/2019/modulo.js
2020-03-06 22:45:40 -05:00

10 lines
173 B
JavaScript

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