Vince Chen

Results 4 comments of Vince Chen
trafficstars

@justinmmott are you able to do `context.global.set` with the fetch wrapper that you've created? If so do you mind sharing a code snippet of how you achieve that? Thanks in...

Just a note, when using sourceURL, Chrome formats `new Function` differently from `eval` with sourceURL. Here's an example: ```js new Function('', `console.log('foo from function') //# sourceURL=foo-function.js`); const script = `function...

It seems you just need to provide a build time configuration to do `fastOptJS` instead of `fullOptJS`. Prior to this commit https://github.com/raml-org/webapi-parser/commit/efe220d502bb81122de5ea7137cf6cba1f301dec, the webapi-parser was using `fastOptJS`

Scala js uses Google Closure Compiler, in order to do full optimization but keep the function name intact, you’d need to have the ability to configure how closure compiler is...