@kwiz/common
Version:
KWIZ common utilities and helpers for M365 platform
10 lines • 323 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.eval2 = void 0;
//eval breaks treeshaking for the entire module it is in, so keep it in separate
function eval2(str) {
// eslint-disable-next-line no-eval
return eval(str);
}
exports.eval2 = eval2;
//# sourceMappingURL=eval.js.map