We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the Node.green table, Node 4.9.1 does not support classes, but it does?
borisov@glossy:~ $ sudo docker run -it mhart/alpine-node:4 node > process.versions { http_parser: '2.8.0', node: '4.9.1', v8: '4.5.103.53', uv: '1.9.1', zlib: '1.2.11', ares: '1.10.1-DEV', modules: '46', openssl: '1.0.2o' } > class Foo { ... constructor () { ..... console.log('FOO'); ..... } ... } [Function: Foo] > new Foo(); FOO Foo {} >
The text was updated successfully, but these errors were encountered:
Guessing this is another case of ES6 things supported in "strict" mode?
Sorry, something went wrong.
I've stumbled on that as well.
It's quite a bug on node.green side
No branches or pull requests
According to the Node.green table, Node 4.9.1 does not support classes, but it does?
The text was updated successfully, but these errors were encountered: