17 lines
594 B
JavaScript
17 lines
594 B
JavaScript
shadow$provide.module$node_modules$pixi_DOT_js$lib$utils$browser$unsafeEvalSupported = function(global, require, module, exports) {
|
|
let unsafeEval;
|
|
exports.unsafeEvalSupported = function() {
|
|
if ("boolean" === typeof unsafeEval) {
|
|
return unsafeEval;
|
|
}
|
|
try {
|
|
unsafeEval = !0 === (new Function("param1", "param2", "param3", "return param1[param2] \x3d\x3d\x3d param3;"))({a:"b"}, "a", "b");
|
|
} catch (_e) {
|
|
unsafeEval = !1;
|
|
}
|
|
return unsafeEval;
|
|
};
|
|
};
|
|
|
|
//# sourceMappingURL=module$node_modules$pixi_DOT_js$lib$utils$browser$unsafeEvalSupported.js.map
|