lhl 6ff0e96ad3 8-4-1 | hace 1 año | |
---|---|---|
.. | ||
test | hace 1 año | |
.editorconfig | hace 1 año | |
.gitattributes | hace 1 año | |
CHANGELOG.md | hace 1 año | |
LICENSE.md | hace 1 año | |
README.md | hace 1 año | |
bower.json | hace 1 año | |
is-class.js | hace 1 año | |
package.json | hace 1 año |
Check if function is an ES6 class.
npm install is-class
bower install is-class
var isClass = require('is-class');
class F {}
function G() {}
console.log(isClass(F)); // true
console.log(isClass(G)); // false
npm test
MIT