The Wayback Machine - https://web.archive.org/web/20200528061617/https://github.com/topics/esnext
Skip to content
#

esnext

Here are 151 public repositories matching this topic...

eu81273
eu81273 commented May 19, 2017

If the document.domain property is set in the page, _has module throws error "Access is denied" when try to check window's property for example 'hasOwnProperty'.

So I think it is better to change _has module like below.

var hasOwnProperty = {}.hasOwnProperty;
module.exports = function(it, key){
  try {
    return hasOwnProperty.call(it, key);
  } catch(e){
    return 
flftfqwxf
flftfqwxf commented May 15, 2017

DESC

在v2.2.12版本上,通过 thinkjs plugin xxx 创建的插件,在经过babel编译时存在问题,编译后的代码,无法在thinkjs系统中使用,其依赖和编译命令为:

 "dependencies": {
    "babel-runtime": "6.x.x"
  },
  "devDependencies": {
    "mocha": "1.20.1",
    "istanbul": "0.4.0",
    "babel-cli": "6.x.x",
    "babel-preset-es2015-loose": "6.x.x",
    "babel-preset-stage-1": "6.x.x",
    "babel-plugin-transform-runtime": "6.x.x",
    "ba
Open

C/C++

1
lastmjs
lastmjs commented Dec 24, 2019
  • Install Emscripten locally and quickly
  • Use emcc Wasm binary
  • Send errors to the browser console (right now stderr is used for non-errors in emcc, so it's a bit tricky)
  • Robust automated tests
  • Allow passing options to emcc
  • Figure out the sanitization of the file url...it is not sanitized and goes straight into the shell...is that okay? Zwitterion should only b
DanielSchaffer
DanielSchaffer commented Aug 24, 2019
  • deprecate options.babel.plugins - add @deprecated jsdoc and a console warning when using it, direct users to use options.babel.loaderOptions (added in #37)
  • deprecate options.babel.cacheDirectory - add @deprecated jsdoc and a console warning when using it, direct users to use options.babel.loaderOptions (added in #37)

preparation for 3.0.0 (see #21)

Improve this page

Add a description, image, and links to the esnext topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the esnext topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.