webhook-action/node_modules/es-abstract/2020/floor.js

15 lines
265 B
JavaScript
Raw Normal View History

'use strict';
// var modulo = require('./modulo');
var $floor = Math.floor;
2024-03-28 02:00:41 +00:00
// http://262.ecma-international.org/11.0/#eqn-floor
module.exports = function floor(x) {
// return x - modulo(x, 1);
2024-03-28 02:00:41 +00:00
if (typeof x === 'bigint') {
return x;
}
return $floor(x);
};