mirror of https://github.com/webpack/webpack.git
9 lines
122 B
JavaScript
9 lines
122 B
JavaScript
|
module.exports = function supportsES6() {
|
||
|
try {
|
||
|
eval("class A {}");
|
||
|
return true;
|
||
|
} catch(e) {
|
||
|
return false;
|
||
|
}
|
||
|
};
|