Skip to content

Instantly share code, notes, and snippets.

@plong0
Created April 10, 2017 17:29
Show Gist options
  • Save plong0/1859baf790621013e6d1f175a6897374 to your computer and use it in GitHub Desktop.
Save plong0/1859baf790621013e6d1f175a6897374 to your computer and use it in GitHub Desktop.
Babel typeof
export default class Foo {
constructor(){
console.log('Hi Foo!');
}
}
import Foo from './foo.js';
var foo = new Foo();
console.log('foo is a ['+(typeof foo)+']');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment