UNPKG

252 BJavaScriptView Raw
1const babel = require('babel-core');
2
3module.exports = {
4 process(src, filename, config) {
5 return babel.util.canCompile(filename) ?
6 babel.transform(src, Object.assign({}, { filename }, config.globals.BABEL_OPTIONS)).code :
7 src;
8 }
9};