Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xotic750/cached-constructors-x
Constructors cached from literals.
https://github.com/xotic750/cached-constructors-x
browser constructors javascript nodejs
Last synced: 2 months ago
JSON representation
Constructors cached from literals.
- Host: GitHub
- URL: https://github.com/xotic750/cached-constructors-x
- Owner: Xotic750
- License: mit
- Created: 2017-09-26T09:31:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T21:54:29.000Z (about 2 years ago)
- Last Synced: 2024-04-25T21:44:33.953Z (9 months ago)
- Topics: browser, constructors, javascript, nodejs
- Language: JavaScript
- Size: 2.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## cached-constructors-x
Constructors cached from literals.
### `module.exports` :
Object
⏏Constructors cached from literals.
**Kind**: Exported member
**Example**```js
import * as constructors from 'cached-constructors-x';console.log(constructors);
// {
// ArrayCtr: [Function: Array],
// BooleanCtr: [Function: Boolean],
// FunctionCtr: [Function: Function],
// NumberCtr: [Function: Number],
// ObjectCtr: [Function: Object],
// RegExpCtr: [Function: RegExp],
// StringCtr: [Function: String],
// }
```