function.prototype-intrinsic-ai 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/index.d.ts +3 -0
- package/index.js +3 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# `function.prototype-intrinsic-ai`
|
|
2
|
+
Robustly cached `Function.prototype` intrinsic for your use. This package is part of the [IntrinsicJS project](https://github.com/enterprise-npm-ai/intrinsicjs).
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
Install it however you want. We'll only include one way to install it in this README, for simplicity:
|
|
6
|
+
```bash
|
|
7
|
+
npm install function.prototype-intrinsic-ai
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
```javascript
|
|
12
|
+
const $FunctionPrototype = require("function.prototype-intrinsic-ai")
|
|
13
|
+
```
|
package/index.d.ts
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "function.prototype-intrinsic-ai",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "ES `Function.prototype` intrinsic as a module.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"intrinsic",
|
|
7
|
+
"js",
|
|
8
|
+
"ai"
|
|
9
|
+
],
|
|
10
|
+
"homepage": "https://github.com/enterprise-npm-ai/intrinsicjs#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/enterprise-npm-ai/intrinsicjs/issues"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/enterprise-npm-ai/intrinsicjs.git"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "tj-commits",
|
|
20
|
+
"type": "commonjs",
|
|
21
|
+
"main": "index.js",
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"true-noop": "^1.3.1"
|
|
24
|
+
}
|
|
25
|
+
}
|