https://github.com/sindresorhus/js-types
List of JavaScript types
https://github.com/sindresorhus/js-types
builtins javascript npm-package types
Last synced: about 1 year ago
JSON representation
List of JavaScript types
- Host: GitHub
- URL: https://github.com/sindresorhus/js-types
- Owner: sindresorhus
- License: mit
- Created: 2015-08-17T18:33:48.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T17:04:07.000Z (about 2 years ago)
- Last Synced: 2025-03-20T16:21:50.790Z (over 1 year ago)
- Topics: builtins, javascript, npm-package, types
- Language: JavaScript
- Size: 10.7 KB
- Stars: 82
- Watchers: 7
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
- Security: .github/security.md
Awesome Lists containing this project
README
# js-types
> List of [JavaScript types](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures)
The list is just a [JSON file](js-types.json) and can be used anywhere.
## Install
```sh
npm install js-types
```
## Usage
```js
import jsTypes from 'js-types';
console.log(jsTypes);
//=> ['Array', 'ArrayBuffer', 'Boolean', …]
```