kaka cc403a83fd 热更功能跑通 5 лет назад
..
test cc403a83fd 热更功能跑通 5 лет назад
.editorconfig cc403a83fd 热更功能跑通 5 лет назад
.gitattributes cc403a83fd 热更功能跑通 5 лет назад
.npmignore cc403a83fd 热更功能跑通 5 лет назад
CHANGELOG.md cc403a83fd 热更功能跑通 5 лет назад
LICENSE.md cc403a83fd 热更功能跑通 5 лет назад
README.md cc403a83fd 热更功能跑通 5 лет назад
bower.json cc403a83fd 热更功能跑通 5 лет назад
is-class.js cc403a83fd 热更功能跑通 5 лет назад
package.json cc403a83fd 热更功能跑通 5 лет назад

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

License

MIT