frontend/.pnpm-store/v3/files/3d/3872792b1fca377050a98684dbc286645855c3cbfa1c37fbdcd9e97c22ccf7757c9759d9a2bef0094a415277b212dd5f50d8c5533ae7b1ab86a85bd330d651

12 lines
217 B
Plaintext

'use strict';
// var modulo = require('./modulo');
var $floor = Math.floor;
// http://262.ecma-international.org/5.1/#sec-5.2
module.exports = function floor(x) {
// return x - modulo(x, 1);
return $floor(x);
};