First commit

This commit is contained in:
2021-03-07 05:58:59 +01:00
committed by Andreas Schaafsma
commit 6e1a5f9fe5
18475 changed files with 3309357 additions and 0 deletions

45
hGameTest/node_modules/openfl/lib/_gen/Lambda.js generated vendored Normal file
View File

@@ -0,0 +1,45 @@
// Class: Lambda
var $global = typeof window != "undefined" ? window : typeof global != "undefined" ? global : typeof self != "undefined" ? self : this
$global.Object.defineProperty(exports, "__esModule", {value: true});
var __map_reserved = {};
// Imports
var $hxClasses = require("./hxClasses_stub").default;
var $iterator = require("./iterator_stub").default;
// Constructor
var Lambda = function(){}
// Meta
Lambda.__name__ = ["Lambda"];
Lambda.prototype = {
};
Lambda.prototype.__class__ = $hxClasses["Lambda"] = Lambda;
// Init
// Statics
Lambda.array = function(it) {
var a = [];
var i = $iterator(it)();
while(i.hasNext()) {
var i1 = i.next();
a.push(i1);
}
return a;
}
// Export
exports.default = Lambda;