You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
594 B
19 lines
594 B
4 years ago
|
"use strict";
|
||
|
|
||
|
const minify = require('./minify');
|
||
|
|
||
|
function transform(options) {
|
||
|
// 'use strict' => this === undefined (Clean Scope)
|
||
|
// Safer for possible security issues, albeit not critical at all here
|
||
|
// eslint-disable-next-line no-new-func, no-param-reassign
|
||
|
options = new Function('exports', 'require', 'module', '__filename', '__dirname', `'use strict'\nreturn ${options}`)(exports, require, module, __filename, __dirname);
|
||
|
const result = minify(options);
|
||
|
|
||
|
if (result.error) {
|
||
|
throw result.error;
|
||
|
} else {
|
||
|
return result;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports.transform = transform;
|