mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-20 21:14:45 +00:00
.
This commit is contained in:
parent
fc725ba36b
commit
422b9fdb15
7395 changed files with 1786235 additions and 3476 deletions
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 {serialize, deserialize} 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);
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue