First commit

This commit is contained in:
2021-03-07 05:58:59 +01:00
commit 8204c6b556
18475 changed files with 3309357 additions and 0 deletions

11
hGameTest/node_modules/es-abstract/5/floor.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'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);
};