Projekt

Obecné

Profil

Stáhnout (173 Bajtů) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
'use strict';
2
3
var mod = require('../helpers/mod');
4
5
// https://ecma-international.org/ecma-262/5.1/#sec-5.2
6
7
module.exports = function modulo(x, y) {
8
	return mod(x, y);
9
};