mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2026-06-08 12:16:11 -06:00
Update node_modules
This commit is contained in:
+2
@@ -56,5 +56,7 @@
|
||||
- kumavis (aaron@kumavis.me)
|
||||
- Sergey Ukustov (sergey.ukustov@machinomy.com)
|
||||
- Fei Liu (liu.feiwood@gmail.com)
|
||||
- Blaine Bublitz (blaine.bublitz@gmail.com)
|
||||
- Niklas Mischkulnig (mischnic@users.noreply.github.com)
|
||||
|
||||
#### Generated by bin/update-authors.sh.
|
||||
|
||||
+5
-2
@@ -34,6 +34,11 @@ instance methods, and class methods that are supported.
|
||||
- Does not modify any browser prototypes or put anything on `window`
|
||||
- Comprehensive test suite (including all buffer tests from node.js core)
|
||||
|
||||
## `buffer` for enterprise
|
||||
|
||||
Available as part of the Tidelift Subscription.
|
||||
|
||||
The maintainers of `buffer` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-buffer?utm_source=npm-buffer&utm_medium=referral&utm_campaign=enterprise&utm_term=repo)
|
||||
|
||||
## install
|
||||
|
||||
@@ -43,8 +48,6 @@ To use this module directly (without browserify), install it:
|
||||
npm install buffer
|
||||
```
|
||||
|
||||
[Get supported buffer with the Tidelift Subscription](https://tidelift.com/subscription/pkg/npm-buffer?utm_source=npm-buffer&utm_medium=referral&utm_campaign=readme)
|
||||
|
||||
This module was previously called **native-buffer-browserify**, but please use **buffer**
|
||||
from now on.
|
||||
|
||||
|
||||
+6
@@ -142,6 +142,12 @@ function from (value, encodingOrOffset, length) {
|
||||
return fromArrayBuffer(value, encodingOrOffset, length)
|
||||
}
|
||||
|
||||
if (typeof SharedArrayBuffer !== 'undefined' &&
|
||||
(isInstance(value, SharedArrayBuffer) ||
|
||||
(value && isInstance(value.buffer, SharedArrayBuffer)))) {
|
||||
return fromArrayBuffer(value, encodingOrOffset, length)
|
||||
}
|
||||
|
||||
if (typeof value === 'number') {
|
||||
throw new TypeError(
|
||||
'The "value" argument must not be of type number. Received type number'
|
||||
|
||||
+14
-11
@@ -1,31 +1,31 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"buffer@5.4.3",
|
||||
"buffer@5.5.0",
|
||||
"/home/runner/work/ghaction-upx/ghaction-upx"
|
||||
]
|
||||
],
|
||||
"_from": "buffer@5.4.3",
|
||||
"_id": "buffer@5.4.3",
|
||||
"_from": "buffer@5.5.0",
|
||||
"_id": "buffer@5.5.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A==",
|
||||
"_integrity": "sha512-9FTEDjLjwoAkEwyMGDjYJQN2gfRgOKBKRfiglhvibGbpeeU/pQn1bJxQqm32OD/AIeEuHxU9roxXxg34Byp/Ww==",
|
||||
"_location": "/buffer",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "buffer@5.4.3",
|
||||
"raw": "buffer@5.5.0",
|
||||
"name": "buffer",
|
||||
"escapedName": "buffer",
|
||||
"rawSpec": "5.4.3",
|
||||
"rawSpec": "5.5.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "5.4.3"
|
||||
"fetchSpec": "5.5.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/unbzip2-stream"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/buffer/-/buffer-5.4.3.tgz",
|
||||
"_spec": "5.4.3",
|
||||
"_resolved": "https://registry.npmjs.org/buffer/-/buffer-5.5.0.tgz",
|
||||
"_spec": "5.5.0",
|
||||
"_where": "/home/runner/work/ghaction-upx/ghaction-upx",
|
||||
"author": {
|
||||
"name": "Feross Aboukhadijeh",
|
||||
@@ -51,7 +51,7 @@
|
||||
},
|
||||
"description": "Node.js Buffer API, for the browser",
|
||||
"devDependencies": {
|
||||
"airtap": "^2.0.3",
|
||||
"airtap": "^3.0.0",
|
||||
"benchmark": "^2.0.0",
|
||||
"browserify": "^16.1.0",
|
||||
"concat-stream": "^2.0.0",
|
||||
@@ -106,8 +106,11 @@
|
||||
"test/common.js",
|
||||
"test/_polyfill.js",
|
||||
"perf/**/*.js"
|
||||
],
|
||||
"globals": [
|
||||
"SharedArrayBuffer"
|
||||
]
|
||||
},
|
||||
"types": "index.d.ts",
|
||||
"version": "5.4.3"
|
||||
"version": "5.5.0"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user