Projekt

Obecné

Profil

Stáhnout (173 Bajtů) Statistiky
| Větev: | Revize:
1
'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
};
(109-109/115)