Files
midi-h5/uni_modules/UniDevTools/node_modules/licia/evalJs.js

17 lines
363 B
JavaScript
Raw Normal View History

2025-08-11 11:51:38 +08:00
var root = require('./root');
exports = function(js, ctx) {
ctx = ctx || root;
try {
return new Function('return (' + js + ');').call(ctx);
} catch (e) {
try {
return new Function('return ' + js).call(ctx);
} catch (e) {
return new Function(js).call(ctx);
}
}
};
module.exports = exports;