BE-SPAN/node_modules/es5-ext/object/unserialize.js
githubna-ilham 722cd440e8 first commit
2024-10-20 22:04:16 +07:00

9 lines
182 B
JavaScript

"use strict";
var value = require("./valid-value");
module.exports = function (code) {
// eslint-disable-next-line no-new-func
return new Function("return " + value(code))();
};