Skip to content

Commit 7bc0e6a

Browse files
authored
buffer: graduate File from experimental and expose as global
PR-URL: #47153 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
1 parent 202a9fa commit 7bc0e6a

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

doc/api/buffer.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -5054,10 +5054,12 @@ See [`Buffer.from(string[, encoding])`][`Buffer.from(string)`].
50545054
added:
50555055
- v19.2.0
50565056
- v18.13.0
5057+
changes:
5058+
- version: REPLACEME
5059+
pr-url: https://github.com/nodejs/node/pull/47153
5060+
description: No longer experimental.
50575061
-->
50585062

5059-
> Stability: 1 - Experimental
5060-
50615063
* Extends: {Blob}
50625064

50635065
A [`File`][] provides information about files.

doc/api/globals.md

+10
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,16 @@ changes:
474474
475475
A browser-compatible implementation of the [`fetch()`][] function.
476476

477+
## Class: `File`
478+
479+
<!-- YAML
480+
added: REPLACEME
481+
-->
482+
483+
<!-- type=global -->
484+
485+
See {File}.
486+
477487
## Class `FormData`
478488

479489
<!-- YAML

lib/.eslintrc.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ rules:
5959
message: Use `const { Event } = require('internal/event_target');` instead of the global.
6060
- name: EventTarget
6161
message: Use `const { EventTarget } = require('internal/event_target');` instead of the global.
62+
- name: File
63+
message: Use `const { File } = require('buffer');` instead of the global.
6264
- name: FormData
6365
message: Use `const { FormData } = require('internal/deps/undici/undici');` instead of the global.
6466
- name: Headers

lib/internal/bootstrap/web/exposed-window-or-worker.js

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ exposeLazyInterfaces(globalThis, 'internal/worker/io', [
3434
defineLazyProperties(globalThis, 'buffer', ['atob', 'btoa']);
3535
// https://www.w3.org/TR/FileAPI/#dfn-Blob
3636
exposeLazyInterfaces(globalThis, 'internal/blob', ['Blob']);
37+
// https://www.w3.org/TR/FileAPI/#dfn-file
38+
exposeLazyInterfaces(globalThis, 'internal/file', ['File']);
3739
// https://www.w3.org/TR/hr-time-2/#the-performance-attribute
3840
exposeLazyInterfaces(globalThis, 'perf_hooks', [
3941
'Performance', 'PerformanceEntry', 'PerformanceMark', 'PerformanceMeasure',

lib/internal/file.js

-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ const {
1313

1414
const {
1515
customInspectSymbol: kInspect,
16-
emitExperimentalWarning,
1716
kEnumerableProperty,
1817
kEmptyObject,
1918
toUSVString,
@@ -37,8 +36,6 @@ class File extends Blob {
3736
#lastModified;
3837

3938
constructor(fileBits, fileName, options = kEmptyObject) {
40-
emitExperimentalWarning('buffer.File');
41-
4239
if (arguments.length < 2) {
4340
throw new ERR_MISSING_ARGS('fileBits', 'fileName');
4441
}

0 commit comments

Comments
 (0)