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