@supercharge/classes
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published


Classes

Class utilities for Node.js and JavaScript


Installation · Usage · API



Latest Version Monthly downloads

Follow @marcuspoehls and @superchargejs for updates!


Introduction

The @supercharge/classes package provides a handful methods around classes in Node.js and JavaScript. For example, determine whether a given input is a class using the .isClass(input) method.

Installation

npm i @supercharge/classes

Usage

Using @supercharge/classes is pretty straightforward. Install and import the package and use it right away:

const { isClass } = require('@supercharge/classes')

isClass(class Rabbit {})
// true

isClass(function classLikeRabbitFunc () {})
// false

API

isClass(input)

Determine whether the given input is a class.

const { isClass } = require('@supercharge/classes')

isClass(class YourClass {})
// true

isFunction(input)

Determine whether the given input is a function.

const { isFunction } = require('@supercharge/classes')

isFunction(function sum () {})
// true

Contributing

Do you miss a class-related function? We very much appreciate your contribution! Please send in a pull request 😊

  1. Create a fork
  2. Create your feature branch: git checkout -b my-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request 🚀

License

MIT © Supercharge


superchargejs.com  ·  GitHub @supercharge  ·  Twitter @superchargejs

Package Sidebar

Install

npm i @supercharge/classes

Weekly Downloads

1

Version

2.0.0

License

MIT

Unpacked Size

9.81 kB

Total Files

5

Last publish

Collaborators

  • marcuspoehls
  • peitek
  • celsiusf