Skip to content

Instantly share code, notes, and snippets.

@forivall
Created September 9, 2016 01:16
Show Gist options
  • Save forivall/88d8056d87bcc566a5d02ef837d772c6 to your computer and use it in GitHub Desktop.
Save forivall/88d8056d87bcc566a5d02ef837d772c6 to your computer and use it in GitHub Desktop.
'use strict';
console.log(process.version)
class A extends Error {}
console.log(new A() instanceof Error)
» babel-node ./clsext.js
v0.10.46
true
{
"name": "experiments",
"devDependencies": {
"babel-preset-es2015": "^6.14.0"
},
"babel": {
"presets": [
"es2015"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment