| ![[ICO]](/icons/blank.gif) | Name | Last modified | Size | Description | 
|---|---|---|---|---|
| ![[PARENTDIR]](/icons/back.gif) | Parent Directory | - | ||
| ![[DIR]](/icons/folder.gif) | test/ | 2023-06-09 12:49 | - | |
| ![[TXT]](/icons/text.gif) | CHANGELOG.md | 1985-10-26 08:15 | 211 | |
| ![[TXT]](/icons/text.gif) | LICENSE.md | 1985-10-26 08:15 | 1.0K | 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك] | 
| ![[TXT]](/icons/text.gif) | README.md | 1985-10-26 08:15 | 333 | f12eb36 documentaiton updates [كارل مبارك] | 
| ![[   ]](/icons/unknown.gif) | bower.json | 1985-10-26 08:15 | 442 | |
| ![[   ]](/icons/unknown.gif) | is-class.js | 1985-10-26 08:15 | 733 | |
| ![[   ]](/icons/unknown.gif) | package.json | 2023-06-09 12:49 | 1.5K | 7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك] | 
# is-class
Check if function is an ES6 class.
# Install
```bash
npm install is-class
```
```bash
bower install is-class
```
# Usage
```javascript
var isClass = require('is-class');
class F {}
function G() {}
console.log(isClass(F)); // true
console.log(isClass(G)); // false
```
# Test
```bash
npm test
```
# License
MIT