UNPKG

@babel/plugin-syntax-function-sent

Version:

Allow parsing of the function.sent meta property

15 lines (12 loc) 342 B
import { declare } from '@babel/helper-plugin-utils'; const index = declare(api => { api.assertVersion("^7.0.0-0 || ^8.0.0"); return { name: "syntax-function-sent", manipulateOptions(opts, parserOpts) { parserOpts.plugins.push("functionSent"); } }; }); export { index as default }; //# sourceMappingURL=index.js.map