41 lines
638 B
JavaScript
41 lines
638 B
JavaScript
// Class: js.Lib
|
|
|
|
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;
|
|
|
|
// Constructor
|
|
|
|
var Lib = function(){}
|
|
|
|
// Meta
|
|
|
|
Lib.__name__ = ["js","Lib"];
|
|
Lib.prototype = {
|
|
|
|
};
|
|
Lib.prototype.__class__ = $hxClasses["js.Lib"] = Lib;
|
|
|
|
// Init
|
|
|
|
|
|
|
|
// Statics
|
|
|
|
Lib.eval = function(code) {
|
|
return eval(code);
|
|
}
|
|
Lib.get_undefined = function() {
|
|
return undefined;
|
|
}
|
|
|
|
|
|
// Export
|
|
|
|
exports.default = Lib; |