Lawsun d230cfbce0 first commit 1 年之前
..
test d230cfbce0 first commit 1 年之前
.editorconfig d230cfbce0 first commit 1 年之前
.gitattributes d230cfbce0 first commit 1 年之前
CHANGELOG.md d230cfbce0 first commit 1 年之前
LICENSE.md d230cfbce0 first commit 1 年之前
README.md d230cfbce0 first commit 1 年之前
bower.json d230cfbce0 first commit 1 年之前
is-class.js d230cfbce0 first commit 1 年之前
package.json d230cfbce0 first commit 1 年之前

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