It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:
This commit is contained in:
103
backend/node_modules/gzip-size/index.d.ts
generated
vendored
Normal file
103
backend/node_modules/gzip-size/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,103 @@
|
||||
import {Buffer} from 'node:buffer';
|
||||
import {PassThrough as PassThroughStream} from 'node:stream';
|
||||
import {ZlibOptions} from 'node:zlib';
|
||||
|
||||
export type Options = ZlibOptions;
|
||||
|
||||
export interface GzipSizeStream extends PassThroughStream {
|
||||
/**
|
||||
Contains the gzip size of the stream after it is finished. Since this happens asynchronously, it is recommended you use the `gzip-size` event instead.
|
||||
*/
|
||||
gzipSize?: number;
|
||||
|
||||
addListener(event: 'gzip-size', listener: (size: number) => void): this;
|
||||
addListener(
|
||||
event: string | symbol,
|
||||
listener: (...args: any[]) => void
|
||||
): this;
|
||||
on(event: 'gzip-size', listener: (size: number) => void): this;
|
||||
on(event: string | symbol, listener: (...args: any[]) => void): this;
|
||||
once(event: 'gzip-size', listener: (size: number) => void): this;
|
||||
once(event: string | symbol, listener: (...args: any[]) => void): this;
|
||||
removeListener(event: 'gzip-size', listener: (size: number) => void): this;
|
||||
removeListener(
|
||||
event: string | symbol,
|
||||
listener: (...args: any[]) => void
|
||||
): this;
|
||||
off(event: 'gzip-size', listener: (size: number) => void): this;
|
||||
off(event: string | symbol, listener: (...args: any[]) => void): this;
|
||||
emit(event: 'gzip-size', size: number): boolean;
|
||||
emit(event: string | symbol, ...args: any[]): boolean;
|
||||
prependListener(event: 'gzip-size', listener: (size: number) => void): this;
|
||||
prependListener(
|
||||
event: string | symbol,
|
||||
listener: (...args: any[]) => void
|
||||
): this;
|
||||
prependOnceListener(
|
||||
event: 'gzip-size',
|
||||
listener: (size: number) => void
|
||||
): this;
|
||||
prependOnceListener(
|
||||
event: string | symbol,
|
||||
listener: (...args: any[]) => void
|
||||
): this;
|
||||
}
|
||||
|
||||
/**
|
||||
Get the gzipped size of a string or buffer.
|
||||
|
||||
@returns The gzipped size of `input`.
|
||||
|
||||
@example
|
||||
```
|
||||
import {gzipSize} from 'gzip-size';
|
||||
|
||||
const text = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.';
|
||||
|
||||
console.log(text.length);
|
||||
//=> 191
|
||||
|
||||
console.log(await gzipSize(text));
|
||||
//=> 78
|
||||
```
|
||||
*/
|
||||
export function gzipSize(input: string | Buffer, options?: Options): Promise<number>;
|
||||
|
||||
/**
|
||||
Synchronously get the gzipped size of a string or buffer.
|
||||
|
||||
@returns The gzipped size of `input`.
|
||||
|
||||
@example
|
||||
```
|
||||
import {gzipSizeSync} from 'gzip-size';
|
||||
|
||||
const text = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.';
|
||||
|
||||
console.log(text.length);
|
||||
//=> 191
|
||||
|
||||
console.log(gzipSizeSync(text));
|
||||
//=> 78
|
||||
```
|
||||
*/
|
||||
export function gzipSizeSync(input: string | Buffer, options?: Options): number;
|
||||
|
||||
/**
|
||||
Get the gzipped size of a file.
|
||||
|
||||
@returns The size of the file.
|
||||
*/
|
||||
export function gzipSizeFromFile(filePath: string, options?: Options): Promise<number>;
|
||||
|
||||
/**
|
||||
Synchronously get the gzipped size of a file.
|
||||
|
||||
@returns The size of the file.
|
||||
*/
|
||||
export function gzipSizeFromFileSync(filePath: string, options?: Options): number;
|
||||
|
||||
/**
|
||||
@returns A stream that emits a `gzip-size` event and has a `gzipSize` property.
|
||||
*/
|
||||
export function gzipSizeStream(options?: Options): GzipSizeStream;
|
65
backend/node_modules/gzip-size/index.js
generated
vendored
Normal file
65
backend/node_modules/gzip-size/index.js
generated
vendored
Normal file
@ -0,0 +1,65 @@
|
||||
import fs from 'node:fs';
|
||||
import stream from 'node:stream';
|
||||
import zlib from 'node:zlib';
|
||||
import {promisify} from 'node:util';
|
||||
import duplexer from 'duplexer';
|
||||
|
||||
const getOptions = options => ({level: 9, ...options});
|
||||
const gzip = promisify(zlib.gzip);
|
||||
|
||||
export async function gzipSize(input, options) {
|
||||
if (!input) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
const data = await gzip(input, getOptions(options));
|
||||
return data.length;
|
||||
}
|
||||
|
||||
export function gzipSizeSync(input, options) {
|
||||
return zlib.gzipSync(input, getOptions(options)).length;
|
||||
}
|
||||
|
||||
export function gzipSizeFromFile(path, options) {
|
||||
// TODO: Use `stream.pipeline` here.
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
const stream = fs.createReadStream(path);
|
||||
stream.on('error', reject);
|
||||
|
||||
const gzipStream = stream.pipe(gzipSizeStream(options));
|
||||
gzipStream.on('error', reject);
|
||||
gzipStream.on('gzip-size', resolve);
|
||||
});
|
||||
}
|
||||
|
||||
export function gzipSizeFromFileSync(path, options) {
|
||||
return gzipSizeSync(fs.readFileSync(path), options);
|
||||
}
|
||||
|
||||
export function gzipSizeStream(options) {
|
||||
// TODO: Use `stream.pipeline` here.
|
||||
|
||||
const input = new stream.PassThrough();
|
||||
const output = new stream.PassThrough();
|
||||
const wrapper = duplexer(input, output);
|
||||
|
||||
let gzipSize = 0;
|
||||
const gzip = zlib.createGzip(getOptions(options))
|
||||
.on('data', buf => {
|
||||
gzipSize += buf.length;
|
||||
})
|
||||
.on('error', () => {
|
||||
wrapper.gzipSize = 0;
|
||||
})
|
||||
.on('end', () => {
|
||||
wrapper.gzipSize = gzipSize;
|
||||
wrapper.emit('gzip-size', gzipSize);
|
||||
output.end();
|
||||
});
|
||||
|
||||
input.pipe(gzip);
|
||||
input.pipe(output, {end: false});
|
||||
|
||||
return wrapper;
|
||||
}
|
9
backend/node_modules/gzip-size/license
generated
vendored
Normal file
9
backend/node_modules/gzip-size/license
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
||||
|
||||
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.
|
44
backend/node_modules/gzip-size/package.json
generated
vendored
Normal file
44
backend/node_modules/gzip-size/package.json
generated
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
{
|
||||
"name": "gzip-size",
|
||||
"version": "7.0.0",
|
||||
"description": "Get the gzipped size of a string or buffer",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/gzip-size",
|
||||
"funding": "https://github.com/sponsors/sindresorhus",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "https://sindresorhus.com"
|
||||
},
|
||||
"type": "module",
|
||||
"exports": "./index.js",
|
||||
"engines": {
|
||||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsd"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts"
|
||||
],
|
||||
"keywords": [
|
||||
"app",
|
||||
"tool",
|
||||
"zlib",
|
||||
"gzip",
|
||||
"compressed",
|
||||
"size",
|
||||
"string",
|
||||
"buffer"
|
||||
],
|
||||
"dependencies": {
|
||||
"duplexer": "^0.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "^3.15.0",
|
||||
"p-event": "^5.0.1",
|
||||
"tsd": "^0.19.0",
|
||||
"xo": "^0.46.4"
|
||||
}
|
||||
}
|
75
backend/node_modules/gzip-size/readme.md
generated
vendored
Normal file
75
backend/node_modules/gzip-size/readme.md
generated
vendored
Normal file
@ -0,0 +1,75 @@
|
||||
# gzip-size
|
||||
|
||||
> Get the gzipped size of a string or buffer
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm install gzip-size
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import {gzipSize, gzipSizeSync} from 'gzip-size';
|
||||
|
||||
const text = 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.';
|
||||
|
||||
console.log(text.length);
|
||||
//=> 191
|
||||
|
||||
console.log(gzipSizeSync(text));
|
||||
//=> 78
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### gzipSize(input, options?)
|
||||
|
||||
Returns a `Promise<number>` with the size.
|
||||
|
||||
### gzipSizeSync(input, options?)
|
||||
|
||||
Returns the size.
|
||||
|
||||
#### input
|
||||
|
||||
Type: `string | Buffer`
|
||||
|
||||
#### options
|
||||
|
||||
Type: `object`
|
||||
|
||||
Any [`zlib` option](https://nodejs.org/api/zlib.html#zlib_class_options).
|
||||
|
||||
### gzipSizeFromFile(path, options?)
|
||||
|
||||
Returns a `Promise<number>` with the size of the file.
|
||||
|
||||
#### path
|
||||
|
||||
Type: `string`
|
||||
|
||||
### gzipSizeFromFileSync(path, options?)
|
||||
|
||||
Returns the size of the file.
|
||||
|
||||
### gzipSizeStream(options?)
|
||||
|
||||
Returns a [`stream.PassThrough`](https://nodejs.org/api/stream.html#stream_class_stream_passthrough). The stream emits a `gzip-size` event and has a `gzipSize` property.
|
||||
|
||||
## Related
|
||||
|
||||
- [gzip-size-cli](https://github.com/sindresorhus/gzip-size-cli) - CLI for this module
|
||||
|
||||
---
|
||||
|
||||
<div align="center">
|
||||
<b>
|
||||
<a href="https://tidelift.com/subscription/pkg/npm-gzip-size?utm_source=npm-gzip-size&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
|
||||
</b>
|
||||
<br>
|
||||
<sub>
|
||||
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
|
||||
</sub>
|
||||
</div>
|
Reference in New Issue
Block a user