cmy a6e36702ec 2023-3-1 hace 2 años
..
test a6e36702ec 2023-3-1 hace 2 años
.editorconfig a6e36702ec 2023-3-1 hace 2 años
.gitattributes a6e36702ec 2023-3-1 hace 2 años
CHANGELOG.md a6e36702ec 2023-3-1 hace 2 años
LICENSE.md a6e36702ec 2023-3-1 hace 2 años
README.md a6e36702ec 2023-3-1 hace 2 años
bower.json a6e36702ec 2023-3-1 hace 2 años
is-class.js a6e36702ec 2023-3-1 hace 2 años
package.json a6e36702ec 2023-3-1 hace 2 años

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