diff options
Diffstat (limited to 'op_crates/file/01_file.js')
-rw-r--r-- | op_crates/file/01_file.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/op_crates/file/01_file.js b/op_crates/file/01_file.js index 47b44a08e..05c410572 100644 --- a/op_crates/file/01_file.js +++ b/op_crates/file/01_file.js @@ -69,7 +69,7 @@ /** * @param {...Uint8Array} bytesArrays - * @returns {Uint8Array} + * @returns {Uint8Array} */ function concatUint8Arrays(...bytesArrays) { let byteLength = 0; @@ -90,7 +90,7 @@ /** @typedef {BufferSource | Blob | string} BlobPart */ - /** + /** * @param {BlobPart[]} parts * @param {string} endings * @returns {Uint8Array} @@ -125,7 +125,7 @@ } /** - * @param {string} str + * @param {string} str * @returns {string} */ function normalizeType(str) { @@ -186,7 +186,7 @@ return this.#type; } - /** + /** * @param {number} [start] * @param {number} [end] * @param {string} [contentType] @@ -346,9 +346,9 @@ [_LastModfied]; /** - * @param {BlobPart[]} fileBits - * @param {string} fileName - * @param {FilePropertyBag} options + * @param {BlobPart[]} fileBits + * @param {string} fileName + * @param {FilePropertyBag} options */ constructor(fileBits, fileName, options = {}) { const prefix = "Failed to construct 'File'"; |