Seems that object spread doesn't work when converting.
// Doesn't work
return fetch(url, {
...opts,
headers,
})
// Works
return fetch(url, Object.assign({}, opts, {
headers,
}))
/XXX/node_modules/flow-jsdoc/app.js:84
throw err;
^
Error: Line 33: Unexpected token ...
at ErrorHandler.constructError (/XXX/node_modules/esprima/dist/esprima.js:3386:22)
at ErrorHandler.createError (/XXX/node_modules/esprima/dist/esprima.js:3404:27)
at JSXParser.Parser.unexpectedTokenError (/XXX/node_modules/esprima/dist/esprima.js:541:39)
at JSXParser.Parser.throwUnexpectedToken (/XXX/node_modules/esprima/dist/esprima.js:551:21)
at JSXParser.Parser.parseObjectPropertyKey (/XXX/node_modules/esprima/dist/esprima.js:1034:27)
at JSXParser.Parser.parseObjectProperty (/XXX/node_modules/esprima/dist/esprima.js:1074:25)
at JSXParser.Parser.parseObjectInitializer (/XXX/node_modules/esprima/dist/esprima.js:1140:35)
at JSXParser.Parser.inheritCoverGrammar (/XXX/node_modules/esprima/dist/esprima.js:832:37)
at JSXParser.Parser.parsePrimaryExpression (/XXX/node_modules/esprima/dist/esprima.js:904:38)
at JSXParser.parsePrimaryExpression (/XXX/node_modules/esprima/dist/esprima.js:5355:97)
error Command failed with exit code 1.
Seems that object spread doesn't work when converting.
/XXX/node_modules/flow-jsdoc/app.js:84 throw err; ^ Error: Line 33: Unexpected token ... at ErrorHandler.constructError (/XXX/node_modules/esprima/dist/esprima.js:3386:22) at ErrorHandler.createError (/XXX/node_modules/esprima/dist/esprima.js:3404:27) at JSXParser.Parser.unexpectedTokenError (/XXX/node_modules/esprima/dist/esprima.js:541:39) at JSXParser.Parser.throwUnexpectedToken (/XXX/node_modules/esprima/dist/esprima.js:551:21) at JSXParser.Parser.parseObjectPropertyKey (/XXX/node_modules/esprima/dist/esprima.js:1034:27) at JSXParser.Parser.parseObjectProperty (/XXX/node_modules/esprima/dist/esprima.js:1074:25) at JSXParser.Parser.parseObjectInitializer (/XXX/node_modules/esprima/dist/esprima.js:1140:35) at JSXParser.Parser.inheritCoverGrammar (/XXX/node_modules/esprima/dist/esprima.js:832:37) at JSXParser.Parser.parsePrimaryExpression (/XXX/node_modules/esprima/dist/esprima.js:904:38) at JSXParser.parsePrimaryExpression (/XXX/node_modules/esprima/dist/esprima.js:5355:97) error Command failed with exit code 1.