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
4 weeks ago
..
test init 4 weeks ago
.editorconfig init 4 weeks ago
.gitattributes init 4 weeks ago
CHANGELOG.md init 4 weeks ago
LICENSE.md init 4 weeks ago
README.md init 4 weeks ago
bower.json init 4 weeks ago
is-class.js init 4 weeks ago
package.json init 4 weeks 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