You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
parttimejob/node_modules/is-class-hotfix
侯晓宇 0cb2601919
init
10 months ago
..
test init 10 months ago
.editorconfig init 10 months ago
.gitattributes init 10 months ago
CHANGELOG.md init 10 months ago
LICENSE.md init 10 months ago
README.md init 10 months ago
bower.json init 10 months ago
is-class.js init 10 months ago
package.json init 10 months ago

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