mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2025-12-11 07:20:42 -07:00
Update node_modules
This commit is contained in:
21
node_modules/jest-serializer/LICENSE
generated
vendored
Normal file
21
node_modules/jest-serializer/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Facebook, Inc. and its affiliates.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
47
node_modules/jest-serializer/README.md
generated
vendored
Normal file
47
node_modules/jest-serializer/README.md
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
# jest-serializer
|
||||
|
||||
Module for serializing and deserializing object into memory and disk. By default, the `v8` implementations are used, but if not present, it defaults to `JSON` implementation. Both serializers have the advantage of being able to serialize `Map`, `Set`, `undefined`, `NaN`, etc, although the JSON one does it through a replacer/reviver.
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
$ yarn add jest-serializer
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
Three kinds of API groups are exposed:
|
||||
|
||||
### In-memory serialization: `serialize` and `deserialize`
|
||||
|
||||
This set of functions take or return a `Buffer`. All the process happens in memory. This is useful when willing to transfer over HTTP, TCP or via UNIX pipes.
|
||||
|
||||
```javascript
|
||||
import {deserialize, serialize} from 'jest-serializer';
|
||||
|
||||
const myObject = {
|
||||
foo: 'bar',
|
||||
baz: [0, true, '2', [], {}],
|
||||
};
|
||||
|
||||
const buffer = serialize(myObject);
|
||||
const myCopyObject = deserialize(buffer);
|
||||
```
|
||||
|
||||
### Synchronous persistent filesystem: `readFileSync` and `writeFileSync`
|
||||
|
||||
This set of functions allow to send to disk a serialization result and retrieve it back, in a synchronous way. It mimics the `fs` API so it looks familiar.
|
||||
|
||||
```javascript
|
||||
import {readFileSync, writeFileSync} from 'jest-serializer';
|
||||
|
||||
const myObject = {
|
||||
foo: 'bar',
|
||||
baz: [0, true, '2', [], {}],
|
||||
};
|
||||
|
||||
const myFile = '/tmp/obj';
|
||||
|
||||
writeFileSync(myFile, myObject);
|
||||
const myCopyObject = readFileSync(myFile);
|
||||
```
|
||||
21
node_modules/jest-serializer/build/index.d.ts
generated
vendored
Normal file
21
node_modules/jest-serializer/build/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
/// <reference path="../v8.d.ts" />
|
||||
/// <reference types="node" />
|
||||
declare type Path = string;
|
||||
export declare function deserialize(buffer: Buffer): any;
|
||||
export declare function serialize(content: unknown): Buffer;
|
||||
export declare function readFileSync(filePath: Path): any;
|
||||
export declare function writeFileSync(filePath: Path, content: any): void;
|
||||
declare const _default: {
|
||||
deserialize: typeof deserialize;
|
||||
readFileSync: typeof readFileSync;
|
||||
serialize: typeof serialize;
|
||||
writeFileSync: typeof writeFileSync;
|
||||
};
|
||||
export default _default;
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
1
node_modules/jest-serializer/build/index.d.ts.map
generated
vendored
Normal file
1
node_modules/jest-serializer/build/index.d.ts.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;;;AAOH,aAAK,IAAI,GAAG,MAAM,CAAC;AASnB,wBAAgB,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,GAAG,CAE/C;AAED,wBAAgB,SAAS,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,CAElD;AAID,wBAAgB,YAAY,CAAC,QAAQ,EAAE,IAAI,GAAG,GAAG,CAEhD;AAED,wBAAgB,aAAa,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,GAAG,QAEzD;;;;;;;AAED,wBAKE"}
|
||||
109
node_modules/jest-serializer/build/index.js
generated
vendored
Normal file
109
node_modules/jest-serializer/build/index.js
generated
vendored
Normal file
@@ -0,0 +1,109 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.deserialize = deserialize;
|
||||
exports.serialize = serialize;
|
||||
exports.readFileSync = readFileSync;
|
||||
exports.writeFileSync = writeFileSync;
|
||||
exports.default = void 0;
|
||||
|
||||
function fs() {
|
||||
const data = _interopRequireWildcard(require('fs'));
|
||||
|
||||
fs = function() {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
function _v() {
|
||||
const data = require('v8');
|
||||
|
||||
_v = function() {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
function _getRequireWildcardCache() {
|
||||
if (typeof WeakMap !== 'function') return null;
|
||||
var cache = new WeakMap();
|
||||
_getRequireWildcardCache = function() {
|
||||
return cache;
|
||||
};
|
||||
return cache;
|
||||
}
|
||||
|
||||
function _interopRequireWildcard(obj) {
|
||||
if (obj && obj.__esModule) {
|
||||
return obj;
|
||||
}
|
||||
if (obj === null || (typeof obj !== 'object' && typeof obj !== 'function')) {
|
||||
return {default: obj};
|
||||
}
|
||||
var cache = _getRequireWildcardCache();
|
||||
if (cache && cache.has(obj)) {
|
||||
return cache.get(obj);
|
||||
}
|
||||
var newObj = {};
|
||||
var hasPropertyDescriptor =
|
||||
Object.defineProperty && Object.getOwnPropertyDescriptor;
|
||||
for (var key in obj) {
|
||||
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
||||
var desc = hasPropertyDescriptor
|
||||
? Object.getOwnPropertyDescriptor(obj, key)
|
||||
: null;
|
||||
if (desc && (desc.get || desc.set)) {
|
||||
Object.defineProperty(newObj, key, desc);
|
||||
} else {
|
||||
newObj[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
newObj.default = obj;
|
||||
if (cache) {
|
||||
cache.set(obj, newObj);
|
||||
}
|
||||
return newObj;
|
||||
}
|
||||
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
// TODO: Remove this
|
||||
/// <reference path="../v8.d.ts" />
|
||||
// JSON and V8 serializers are both stable when it comes to compatibility. The
|
||||
// current JSON specification is well defined in RFC 8259, and V8 ensures that
|
||||
// the versions are compatible by encoding the serialization version in the own
|
||||
// generated buffer.
|
||||
// In memory functions.
|
||||
function deserialize(buffer) {
|
||||
return (0, _v().deserialize)(buffer);
|
||||
}
|
||||
|
||||
function serialize(content) {
|
||||
return (0, _v().serialize)(content);
|
||||
} // Synchronous filesystem functions.
|
||||
|
||||
function readFileSync(filePath) {
|
||||
return (0, _v().deserialize)(fs().readFileSync(filePath));
|
||||
}
|
||||
|
||||
function writeFileSync(filePath, content) {
|
||||
return fs().writeFileSync(filePath, (0, _v().serialize)(content));
|
||||
}
|
||||
|
||||
var _default = {
|
||||
deserialize,
|
||||
readFileSync,
|
||||
serialize,
|
||||
writeFileSync
|
||||
};
|
||||
exports.default = _default;
|
||||
49
node_modules/jest-serializer/package.json
generated
vendored
Normal file
49
node_modules/jest-serializer/package.json
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"_from": "jest-serializer@^25.1.0",
|
||||
"_id": "jest-serializer@25.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-20Wkq5j7o84kssBwvyuJ7Xhn7hdPeTXndnwIblKDR2/sy1SUm6rWWiG9kSCgJPIfkDScJCIsTtOKdlzfIHOfKA==",
|
||||
"_location": "/jest-serializer",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "jest-serializer@^25.1.0",
|
||||
"name": "jest-serializer",
|
||||
"escapedName": "jest-serializer",
|
||||
"rawSpec": "^25.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^25.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/jest-haste-map"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-25.1.0.tgz",
|
||||
"_shasum": "73096ba90e07d19dec4a0c1dd89c355e2f129e5d",
|
||||
"_spec": "jest-serializer@^25.1.0",
|
||||
"_where": "/home/runner/work/ghaction-upx/ghaction-upx/node_modules/jest-haste-map",
|
||||
"bugs": {
|
||||
"url": "https://github.com/facebook/jest/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "Module for serializing and deserializing object into memory and disk. By default, the `v8` implementations are used, but if not present, it defaults to `JSON` implementation. Both serializers have the advantage of being able to serialize `Map`, `Set`, `undefined`, `NaN`, etc, although the JSON one does it through a replacer/reviver.",
|
||||
"engines": {
|
||||
"node": ">= 8.3"
|
||||
},
|
||||
"gitHead": "170eee11d03b0ed5c60077982fdbc3bafd403638",
|
||||
"homepage": "https://github.com/facebook/jest#readme",
|
||||
"license": "MIT",
|
||||
"main": "build/index.js",
|
||||
"name": "jest-serializer",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/facebook/jest.git",
|
||||
"directory": "packages/jest-serializer"
|
||||
},
|
||||
"types": "build/index.d.ts",
|
||||
"version": "25.1.0"
|
||||
}
|
||||
11
node_modules/jest-serializer/v8.d.ts
generated
vendored
Normal file
11
node_modules/jest-serializer/v8.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
declare module 'v8' {
|
||||
function serialize(value: unknown): Buffer;
|
||||
function deserialize(value: Buffer): unknown;
|
||||
}
|
||||
Reference in New Issue
Block a user