mirror of https://github.com/webpack/webpack.git
10 lines
201 B
JavaScript
10 lines
201 B
JavaScript
|
module.exports = function supportsSpread() {
|
||
|
try {
|
||
|
var x = { a: true }, y; // eslint-disable-line no-unused-vars
|
||
|
eval("y = { ...x }");
|
||
|
return y !== x && y.a;
|
||
|
} catch(e) {
|
||
|
return false;
|
||
|
}
|
||
|
};
|