diff options
| author | Kenta Moriuchi <moriken@kimamass.com> | 2023-06-06 04:57:01 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-05 15:57:01 -0400 |
| commit | d54ef02dfe4455c043c3ccb3d1d15e5fcc302756 (patch) | |
| tree | d3f0a84740bbc26681a8340066b44e5b15dc9255 /ext/web | |
| parent | 11dd5a0ae73b4d3612de6422893a25232f930b84 (diff) | |
chore: update deno_lint to 0.46.0 (#19372)
Diffstat (limited to 'ext/web')
| -rw-r--r-- | ext/web/06_streams.js | 1 | ||||
| -rw-r--r-- | ext/web/09_file.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/web/06_streams.js b/ext/web/06_streams.js index c0cbb3049..21207c372 100644 --- a/ext/web/06_streams.js +++ b/ext/web/06_streams.js @@ -1261,6 +1261,7 @@ function readableByteStreamControllerEnqueueClonedChunkToQueue( ); } else { // TODO(lucacasonato): add SharedArrayBuffer to primordials + // deno-lint-ignore prefer-primordials cloneResult = buffer.slice(byteOffset, byteOffset + byteLength); } } catch (e) { diff --git a/ext/web/09_file.js b/ext/web/09_file.js index d65a512f9..79a9c41b2 100644 --- a/ext/web/09_file.js +++ b/ext/web/09_file.js @@ -326,6 +326,7 @@ class Blob { relativeStart -= size; relativeEnd -= size; } else { + // deno-lint-ignore prefer-primordials const chunk = part.slice( relativeStart, MathMin(part.size, relativeEnd), |
