mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-12-26 13:05:24 +00:00
12 lines
226 B
JavaScript
Generated
12 lines
226 B
JavaScript
Generated
'use strict';
|
|
|
|
// var modulo = require('./modulo');
|
|
var $floor = Math.floor;
|
|
|
|
// http://www.ecma-international.org/ecma-262/5.1/#sec-5.2
|
|
|
|
module.exports = function floor(x) {
|
|
// return x - modulo(x, 1);
|
|
return $floor(x);
|
|
};
|