unboundedpress/node_modules/acorn-es7-plugin/test/babel.js

14 lines
266 B
JavaScript
Raw Normal View History

2019-07-23 06:28:47 +02:00
'use strict';
try {
// If this doesn't throw, then arrow functions are supported natively.
// Do not require babel (for speed).
eval('var x = () => {};');
} catch (e) {
require('babel-core/register')({
only: /test.js$/,
presets: ['es2015']
});
}