protobufjs 8.6.2 → 8.6.4
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/LICENSE +39 -39
- package/README.md +441 -441
- package/dist/light/protobuf.js +8582 -8454
- package/dist/light/protobuf.js.map +1 -1
- package/dist/light/protobuf.min.js +3 -3
- package/dist/light/protobuf.min.js.map +1 -1
- package/dist/minimal/protobuf.js +3071 -2999
- package/dist/minimal/protobuf.js.map +1 -1
- package/dist/minimal/protobuf.min.js +3 -3
- package/dist/minimal/protobuf.min.js.map +1 -1
- package/dist/protobuf.js +10486 -10358
- package/dist/protobuf.js.map +1 -1
- package/dist/protobuf.min.js +3 -3
- package/dist/protobuf.min.js.map +1 -1
- package/ext/README.md +70 -70
- package/ext/debug/README.md +4 -4
- package/ext/debug/index.js +71 -71
- package/ext/descriptor/README.md +5 -5
- package/ext/descriptor/index.d.ts +2 -2
- package/ext/descriptor/index.js +2 -2
- package/ext/descriptor.d.ts +87 -87
- package/ext/descriptor.js +1354 -1354
- package/ext/protojson.LICENSE +201 -201
- package/ext/protojson.d.ts +20 -20
- package/ext/protojson.js +945 -925
- package/ext/textformat.d.ts +19 -19
- package/ext/textformat.js +1256 -1256
- package/google/LICENSE +27 -27
- package/google/README.md +1 -1
- package/google/api/annotations.json +82 -82
- package/google/api/annotations.proto +10 -10
- package/google/api/http.json +85 -85
- package/google/api/http.proto +30 -30
- package/google/protobuf/api.json +117 -117
- package/google/protobuf/api.proto +33 -33
- package/google/protobuf/compiler/plugin.json +126 -126
- package/google/protobuf/compiler/plugin.proto +47 -47
- package/google/protobuf/descriptor.json +1381 -1381
- package/google/protobuf/descriptor.proto +534 -534
- package/google/protobuf/source_context.json +19 -19
- package/google/protobuf/source_context.proto +7 -7
- package/google/protobuf/type.json +201 -201
- package/google/protobuf/type.proto +89 -89
- package/index.d.ts +30 -0
- package/index.js +4 -4
- package/light.d.ts +2 -2
- package/light.js +3 -3
- package/minimal.d.ts +2 -2
- package/minimal.js +4 -4
- package/package.json +93 -93
- package/src/common.js +399 -399
- package/src/converter.js +344 -344
- package/src/decoder.js +214 -208
- package/src/encoder.js +111 -111
- package/src/enum.js +231 -231
- package/src/field.js +497 -497
- package/src/index-light.js +104 -104
- package/src/index-minimal.js +35 -36
- package/src/index.js +12 -12
- package/src/mapfield.js +136 -136
- package/src/message.js +137 -137
- package/src/method.js +175 -175
- package/src/namespace.js +566 -565
- package/src/object.js +382 -382
- package/src/oneof.js +225 -225
- package/src/parse.js +1068 -1068
- package/src/reader.js +558 -543
- package/src/reader_buffer.js +72 -72
- package/src/root.js +416 -416
- package/src/roots.js +18 -18
- package/src/rpc/service.js +148 -148
- package/src/rpc.js +36 -36
- package/src/service.js +198 -198
- package/src/tokenize.js +421 -421
- package/src/type.js +654 -655
- package/src/types.js +196 -196
- package/src/typescript.js +25 -25
- package/src/util/aspromise.d.ts +13 -13
- package/src/util/aspromise.js +52 -52
- package/src/util/base64.d.ts +32 -32
- package/src/util/base64.js +146 -146
- package/src/util/codegen.d.ts +31 -31
- package/src/util/codegen.js +113 -113
- package/src/util/eventemitter.d.ts +45 -45
- package/src/util/eventemitter.js +86 -86
- package/src/util/fetch.d.ts +56 -56
- package/src/util/fetch.js +112 -112
- package/src/util/float.d.ts +83 -83
- package/src/util/float.js +335 -335
- package/src/util/fs.js +11 -11
- package/src/util/longbits.js +200 -200
- package/src/util/minimal.js +515 -515
- package/src/util/path.d.ts +22 -22
- package/src/util/path.js +100 -72
- package/src/util/patterns.js +7 -7
- package/src/util/pool.d.ts +32 -32
- package/src/util/pool.js +48 -48
- package/src/util/utf8.d.ts +24 -24
- package/src/util/utf8.js +188 -130
- package/src/util.js +264 -242
- package/src/verifier.js +180 -180
- package/src/wrappers.js +106 -106
- package/src/writer.js +495 -495
- package/src/writer_buffer.js +102 -102
- package/tsconfig.json +6 -6
package/src/util/path.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Tests if the specified path is absolute.
|
|
3
|
-
* @param {string} path Path to test
|
|
4
|
-
* @returns {boolean} `true` if path is absolute
|
|
5
|
-
*/
|
|
6
|
-
export function isAbsolute(path: string): boolean;
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* Normalizes the specified path.
|
|
10
|
-
* @param {string} path Path to normalize
|
|
11
|
-
* @returns {string} Normalized path
|
|
12
|
-
*/
|
|
13
|
-
export function normalize(path: string): string;
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Resolves the specified include path against the specified origin path.
|
|
17
|
-
* @param {string} originPath Path to the origin file
|
|
18
|
-
* @param {string} includePath Include path relative to origin path
|
|
19
|
-
* @param {boolean} [alreadyNormalized=false] `true` if both paths are already known to be normalized
|
|
20
|
-
* @returns {string} Path to the include file
|
|
21
|
-
*/
|
|
22
|
-
export function resolve(originPath: string, includePath: string, alreadyNormalized?: boolean): string;
|
|
1
|
+
/**
|
|
2
|
+
* Tests if the specified path is absolute.
|
|
3
|
+
* @param {string} path Path to test
|
|
4
|
+
* @returns {boolean} `true` if path is absolute
|
|
5
|
+
*/
|
|
6
|
+
export function isAbsolute(path: string): boolean;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Normalizes the specified path.
|
|
10
|
+
* @param {string} path Path to normalize
|
|
11
|
+
* @returns {string} Normalized path
|
|
12
|
+
*/
|
|
13
|
+
export function normalize(path: string): string;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Resolves the specified include path against the specified origin path.
|
|
17
|
+
* @param {string} originPath Path to the origin file
|
|
18
|
+
* @param {string} includePath Include path relative to origin path
|
|
19
|
+
* @param {boolean} [alreadyNormalized=false] `true` if both paths are already known to be normalized
|
|
20
|
+
* @returns {string} Path to the include file
|
|
21
|
+
*/
|
|
22
|
+
export function resolve(originPath: string, includePath: string, alreadyNormalized?: boolean): string;
|
package/src/util/path.js
CHANGED
|
@@ -1,72 +1,100 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* A minimal path module to resolve Unix, Windows and URL paths alike.
|
|
5
|
-
* @memberof util
|
|
6
|
-
* @namespace
|
|
7
|
-
*/
|
|
8
|
-
var path = exports;
|
|
9
|
-
|
|
10
|
-
var
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* A minimal path module to resolve Unix, Windows and URL paths alike.
|
|
5
|
+
* @memberof util
|
|
6
|
+
* @namespace
|
|
7
|
+
*/
|
|
8
|
+
var path = exports;
|
|
9
|
+
|
|
10
|
+
var urlRe = /^[a-zA-Z][a-zA-Z0-9+.-]+:\/\//;
|
|
11
|
+
|
|
12
|
+
function normalizeUrl(path) {
|
|
13
|
+
if (typeof URL === "undefined" || !urlRe.test(path))
|
|
14
|
+
return null;
|
|
15
|
+
try {
|
|
16
|
+
return new URL(path).href;
|
|
17
|
+
} catch (e) {
|
|
18
|
+
return null;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function resolveUrl(originPath, includePath) {
|
|
23
|
+
if (typeof URL === "undefined" || !urlRe.test(originPath) || urlRe.test(includePath))
|
|
24
|
+
return null;
|
|
25
|
+
try {
|
|
26
|
+
return new URL(includePath, originPath).href;
|
|
27
|
+
} catch (e) {
|
|
28
|
+
return null;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
var isAbsolute =
|
|
33
|
+
/**
|
|
34
|
+
* Tests if the specified path is absolute.
|
|
35
|
+
* @param {string} path Path to test
|
|
36
|
+
* @returns {boolean} `true` if path is absolute
|
|
37
|
+
*/
|
|
38
|
+
path.isAbsolute = function isAbsolute(path) {
|
|
39
|
+
return /^(?:\/|\w+:|\\\\\w+)/.test(path);
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
var normalize =
|
|
43
|
+
/**
|
|
44
|
+
* Normalizes the specified path.
|
|
45
|
+
* @param {string} path Path to normalize
|
|
46
|
+
* @returns {string} Normalized path
|
|
47
|
+
*/
|
|
48
|
+
path.normalize = function normalize(path) {
|
|
49
|
+
var normalizedUrl = normalizeUrl(path);
|
|
50
|
+
if (normalizedUrl)
|
|
51
|
+
return normalizedUrl;
|
|
52
|
+
var firstTwoCharacters = path.substring(0,2);
|
|
53
|
+
var uncPrefix = "";
|
|
54
|
+
if (firstTwoCharacters === "\\\\") {
|
|
55
|
+
uncPrefix = firstTwoCharacters;
|
|
56
|
+
path = path.substring(2);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
path = path.replace(/\\/g, "/")
|
|
60
|
+
.replace(/\/{2,}/g, "/");
|
|
61
|
+
var parts = path.split("/"),
|
|
62
|
+
absolute = isAbsolute(path),
|
|
63
|
+
prefix = "";
|
|
64
|
+
if (absolute)
|
|
65
|
+
prefix = parts.shift() + "/";
|
|
66
|
+
for (var i = 0; i < parts.length;) {
|
|
67
|
+
if (parts[i] === "..") {
|
|
68
|
+
if (i > 0 && parts[i - 1] !== "..")
|
|
69
|
+
parts.splice(--i, 2);
|
|
70
|
+
else if (absolute)
|
|
71
|
+
parts.splice(i, 1);
|
|
72
|
+
else
|
|
73
|
+
++i;
|
|
74
|
+
} else if (parts[i] === ".")
|
|
75
|
+
parts.splice(i, 1);
|
|
76
|
+
else
|
|
77
|
+
++i;
|
|
78
|
+
}
|
|
79
|
+
return uncPrefix + prefix + parts.join("/");
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Resolves the specified include path against the specified origin path.
|
|
84
|
+
* @param {string} originPath Path to the origin file
|
|
85
|
+
* @param {string} includePath Include path relative to origin path
|
|
86
|
+
* @param {boolean} [alreadyNormalized=false] `true` if both paths are already known to be normalized
|
|
87
|
+
* @returns {string} Path to the include file
|
|
88
|
+
*/
|
|
89
|
+
path.resolve = function resolve(originPath, includePath, alreadyNormalized) {
|
|
90
|
+
var resolvedUrl = resolveUrl(originPath, includePath);
|
|
91
|
+
if (resolvedUrl)
|
|
92
|
+
return resolvedUrl;
|
|
93
|
+
if (!alreadyNormalized)
|
|
94
|
+
includePath = normalize(includePath); // path or absolute url
|
|
95
|
+
if (isAbsolute(includePath))
|
|
96
|
+
return includePath;
|
|
97
|
+
if (!alreadyNormalized)
|
|
98
|
+
originPath = normalize(originPath);
|
|
99
|
+
return (originPath = originPath.replace(/(?:\/|^)[^/]+$/, "")).length ? normalize(originPath + "/" + includePath) : includePath;
|
|
100
|
+
};
|
package/src/util/patterns.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var patterns = exports;
|
|
4
|
-
|
|
5
|
-
patterns.numberRe = /^(?![eE])[0-9]*(?:\.[0-9]*)?(?:[eE][+-]?[0-9]+)?$/;
|
|
6
|
-
patterns.typeRefRe = /^(?:\.?[a-zA-Z_][a-zA-Z_0-9]*)(?:\.[a-zA-Z_][a-zA-Z_0-9]*)*$/;
|
|
7
|
-
patterns.reservedRe = /^(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$/;
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var patterns = exports;
|
|
4
|
+
|
|
5
|
+
patterns.numberRe = /^(?![eE])[0-9]*(?:\.[0-9]*)?(?:[eE][+-]?[0-9]+)?$/;
|
|
6
|
+
patterns.typeRefRe = /^(?:\.?[a-zA-Z_][a-zA-Z_0-9]*)(?:\.[a-zA-Z_][a-zA-Z_0-9]*)*$/;
|
|
7
|
+
patterns.reservedRe = /^(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$/;
|
package/src/util/pool.d.ts
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
export = pool;
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* An allocator as used by {@link util.pool}.
|
|
5
|
-
* @typedef PoolAllocator
|
|
6
|
-
* @type {function}
|
|
7
|
-
* @param {number} size Buffer size
|
|
8
|
-
* @returns {Uint8Array} Buffer
|
|
9
|
-
*/
|
|
10
|
-
type PoolAllocator = (size: number) => Uint8Array;
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* A slicer as used by {@link util.pool}.
|
|
14
|
-
* @typedef PoolSlicer
|
|
15
|
-
* @type {function}
|
|
16
|
-
* @param {number} start Start offset
|
|
17
|
-
* @param {number} end End offset
|
|
18
|
-
* @returns {Uint8Array} Buffer slice
|
|
19
|
-
* @this {Uint8Array}
|
|
20
|
-
*/
|
|
21
|
-
type PoolSlicer = (this: Uint8Array, start: number, end: number) => Uint8Array;
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* A general purpose buffer pool.
|
|
25
|
-
* @memberof util
|
|
26
|
-
* @function
|
|
27
|
-
* @param {PoolAllocator} alloc Allocator
|
|
28
|
-
* @param {PoolSlicer} slice Slicer
|
|
29
|
-
* @param {number} [size=8192] Slab size
|
|
30
|
-
* @returns {PoolAllocator} Pooled allocator
|
|
31
|
-
*/
|
|
32
|
-
declare function pool(alloc: PoolAllocator, slice: PoolSlicer, size?: number): PoolAllocator;
|
|
1
|
+
export = pool;
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* An allocator as used by {@link util.pool}.
|
|
5
|
+
* @typedef PoolAllocator
|
|
6
|
+
* @type {function}
|
|
7
|
+
* @param {number} size Buffer size
|
|
8
|
+
* @returns {Uint8Array} Buffer
|
|
9
|
+
*/
|
|
10
|
+
type PoolAllocator = (size: number) => Uint8Array;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* A slicer as used by {@link util.pool}.
|
|
14
|
+
* @typedef PoolSlicer
|
|
15
|
+
* @type {function}
|
|
16
|
+
* @param {number} start Start offset
|
|
17
|
+
* @param {number} end End offset
|
|
18
|
+
* @returns {Uint8Array} Buffer slice
|
|
19
|
+
* @this {Uint8Array}
|
|
20
|
+
*/
|
|
21
|
+
type PoolSlicer = (this: Uint8Array, start: number, end: number) => Uint8Array;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* A general purpose buffer pool.
|
|
25
|
+
* @memberof util
|
|
26
|
+
* @function
|
|
27
|
+
* @param {PoolAllocator} alloc Allocator
|
|
28
|
+
* @param {PoolSlicer} slice Slicer
|
|
29
|
+
* @param {number} [size=8192] Slab size
|
|
30
|
+
* @returns {PoolAllocator} Pooled allocator
|
|
31
|
+
*/
|
|
32
|
+
declare function pool(alloc: PoolAllocator, slice: PoolSlicer, size?: number): PoolAllocator;
|
package/src/util/pool.js
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
module.exports = pool;
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* An allocator as used by {@link util.pool}.
|
|
6
|
-
* @typedef PoolAllocator
|
|
7
|
-
* @type {function}
|
|
8
|
-
* @param {number} size Buffer size
|
|
9
|
-
* @returns {Uint8Array} Buffer
|
|
10
|
-
*/
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* A slicer as used by {@link util.pool}.
|
|
14
|
-
* @typedef PoolSlicer
|
|
15
|
-
* @type {function}
|
|
16
|
-
* @param {number} start Start offset
|
|
17
|
-
* @param {number} end End offset
|
|
18
|
-
* @returns {Uint8Array} Buffer slice
|
|
19
|
-
* @this Uint8Array
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* A general purpose buffer pool.
|
|
24
|
-
* @memberof util
|
|
25
|
-
* @function
|
|
26
|
-
* @param {PoolAllocator} alloc Allocator
|
|
27
|
-
* @param {PoolSlicer} slice Slicer
|
|
28
|
-
* @param {number} [size=8192] Slab size
|
|
29
|
-
* @returns {PoolAllocator} Pooled allocator
|
|
30
|
-
*/
|
|
31
|
-
function pool(alloc, slice, size) {
|
|
32
|
-
var SIZE = size || 8192;
|
|
33
|
-
var MAX = SIZE >>> 1;
|
|
34
|
-
var slab = null;
|
|
35
|
-
var offset = SIZE;
|
|
36
|
-
return function pool_alloc(size) {
|
|
37
|
-
if (size < 1 || size > MAX)
|
|
38
|
-
return alloc(size);
|
|
39
|
-
if (offset + size > SIZE) {
|
|
40
|
-
slab = alloc(SIZE);
|
|
41
|
-
offset = 0;
|
|
42
|
-
}
|
|
43
|
-
var buf = slice.call(slab, offset, offset += size);
|
|
44
|
-
if (offset & 7) // align to 32 bit
|
|
45
|
-
offset = (offset | 7) + 1;
|
|
46
|
-
return buf;
|
|
47
|
-
};
|
|
48
|
-
}
|
|
1
|
+
"use strict";
|
|
2
|
+
module.exports = pool;
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* An allocator as used by {@link util.pool}.
|
|
6
|
+
* @typedef PoolAllocator
|
|
7
|
+
* @type {function}
|
|
8
|
+
* @param {number} size Buffer size
|
|
9
|
+
* @returns {Uint8Array} Buffer
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* A slicer as used by {@link util.pool}.
|
|
14
|
+
* @typedef PoolSlicer
|
|
15
|
+
* @type {function}
|
|
16
|
+
* @param {number} start Start offset
|
|
17
|
+
* @param {number} end End offset
|
|
18
|
+
* @returns {Uint8Array} Buffer slice
|
|
19
|
+
* @this Uint8Array
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* A general purpose buffer pool.
|
|
24
|
+
* @memberof util
|
|
25
|
+
* @function
|
|
26
|
+
* @param {PoolAllocator} alloc Allocator
|
|
27
|
+
* @param {PoolSlicer} slice Slicer
|
|
28
|
+
* @param {number} [size=8192] Slab size
|
|
29
|
+
* @returns {PoolAllocator} Pooled allocator
|
|
30
|
+
*/
|
|
31
|
+
function pool(alloc, slice, size) {
|
|
32
|
+
var SIZE = size || 8192;
|
|
33
|
+
var MAX = SIZE >>> 1;
|
|
34
|
+
var slab = null;
|
|
35
|
+
var offset = SIZE;
|
|
36
|
+
return function pool_alloc(size) {
|
|
37
|
+
if (size < 1 || size > MAX)
|
|
38
|
+
return alloc(size);
|
|
39
|
+
if (offset + size > SIZE) {
|
|
40
|
+
slab = alloc(SIZE);
|
|
41
|
+
offset = 0;
|
|
42
|
+
}
|
|
43
|
+
var buf = slice.call(slab, offset, offset += size);
|
|
44
|
+
if (offset & 7) // align to 32 bit
|
|
45
|
+
offset = (offset | 7) + 1;
|
|
46
|
+
return buf;
|
|
47
|
+
};
|
|
48
|
+
}
|
package/src/util/utf8.d.ts
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Calculates the UTF8 byte length of a string.
|
|
3
|
-
* @param {string} string String
|
|
4
|
-
* @returns {number} Byte length
|
|
5
|
-
*/
|
|
6
|
-
export function length(string: string): number;
|
|
7
|
-
|
|
8
|
-
/**
|
|
9
|
-
* Reads UTF8 bytes as a string.
|
|
10
|
-
* @param {Uint8Array} buffer Source buffer
|
|
11
|
-
* @param {number} start Source start
|
|
12
|
-
* @param {number} end Source end
|
|
13
|
-
* @returns {string} String read
|
|
14
|
-
*/
|
|
15
|
-
export function read(buffer: Uint8Array, start: number, end: number): string;
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Writes a string as UTF8 bytes.
|
|
19
|
-
* @param {string} string Source string
|
|
20
|
-
* @param {Uint8Array} buffer Destination buffer
|
|
21
|
-
* @param {number} offset Destination offset
|
|
22
|
-
* @returns {number} Bytes written
|
|
23
|
-
*/
|
|
24
|
-
export function write(string: string, buffer: Uint8Array, offset: number): number;
|
|
1
|
+
/**
|
|
2
|
+
* Calculates the UTF8 byte length of a string.
|
|
3
|
+
* @param {string} string String
|
|
4
|
+
* @returns {number} Byte length
|
|
5
|
+
*/
|
|
6
|
+
export function length(string: string): number;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Reads UTF8 bytes as a string.
|
|
10
|
+
* @param {Uint8Array} buffer Source buffer
|
|
11
|
+
* @param {number} start Source start
|
|
12
|
+
* @param {number} end Source end
|
|
13
|
+
* @returns {string} String read
|
|
14
|
+
*/
|
|
15
|
+
export function read(buffer: Uint8Array, start: number, end: number): string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Writes a string as UTF8 bytes.
|
|
19
|
+
* @param {string} string Source string
|
|
20
|
+
* @param {Uint8Array} buffer Destination buffer
|
|
21
|
+
* @param {number} offset Destination offset
|
|
22
|
+
* @returns {number} Bytes written
|
|
23
|
+
*/
|
|
24
|
+
export function write(string: string, buffer: Uint8Array, offset: number): number;
|