mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
9 lines
182 B
JavaScript
Vendored
9 lines
182 B
JavaScript
Vendored
"use strict";
|
|
|
|
var value = require("./valid-value");
|
|
|
|
module.exports = function (code) {
|
|
// eslint-disable-next-line no-new-func
|
|
return new Function("return " + value(code))();
|
|
};
|