aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@babel/core/lib/transform-ast-sync.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/@babel/core/lib/transform-ast-sync.js')
-rw-r--r--node_modules/@babel/core/lib/transform-ast-sync.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/node_modules/@babel/core/lib/transform-ast-sync.js b/node_modules/@babel/core/lib/transform-ast-sync.js
new file mode 100644
index 00000000..a4946dd6
--- /dev/null
+++ b/node_modules/@babel/core/lib/transform-ast-sync.js
@@ -0,0 +1,19 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.default = transformFromAstSync;
+
+var _config = _interopRequireDefault(require("./config"));
+
+var _transformation = require("./transformation");
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
+
+function transformFromAstSync(ast, code, opts) {
+ const config = (0, _config.default)(opts);
+ if (config === null) return null;
+ if (!ast) throw new Error("No AST given");
+ return (0, _transformation.runSync)(config, code, ast);
+} \ No newline at end of file