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