| .. | ||
| test | ||
| .editorconfig | ||
| .gitattributes | ||
| bower.json | ||
| CHANGELOG.md | ||
| is-class.js | ||
| LICENSE.md | ||
| package.json | ||
| README.md | ||
is-class
Check if function is an ES6 class.
Install
npm install is-class
bower install is-class
Usage
var isClass = require('is-class');
class F {}
function G() {}
console.log(isClass(F)); // true
console.log(isClass(G)); // false
Test
npm test
License
MIT