mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-15 11:00:59 +00:00
8 lines
182 B
JavaScript
8 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))();
|
|
};
|