File tree 2 files changed +3
-13
lines changed
2 files changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -528,10 +528,11 @@ The [`util._extend()`][] API has been deprecated.
528
528
<a id =" DEP0061 " ></a >
529
529
### DEP0061: fs.SyncWriteStream
530
530
531
- Type: Runtime
531
+ Type: End-of-Life
532
532
533
533
The ` fs.SyncWriteStream ` class was never intended to be a publicly accessible
534
- API. No alternative API is available. Please use a userland alternative.
534
+ API and has been removed. No alternative API is available. Please use a userland
535
+ alternative.
535
536
536
537
<a id =" DEP0062 " ></a >
537
538
### DEP0062: node --debug
Original file line number Diff line number Diff line change @@ -2360,14 +2360,3 @@ WriteStream.prototype.close = function(cb) {
2360
2360
2361
2361
// There is no shutdown() for files.
2362
2362
WriteStream . prototype . destroySoon = WriteStream . prototype . end ;
2363
-
2364
- // SyncWriteStream is internal. DO NOT USE.
2365
- // This undocumented API was never intended to be made public.
2366
- var SyncWriteStream = internalFS . SyncWriteStream ;
2367
- Object . defineProperty ( fs , 'SyncWriteStream' , {
2368
- configurable : true ,
2369
- get : internalUtil . deprecate ( ( ) => SyncWriteStream ,
2370
- 'fs.SyncWriteStream is deprecated.' , 'DEP0061' ) ,
2371
- set : internalUtil . deprecate ( ( val ) => { SyncWriteStream = val ; } ,
2372
- 'fs.SyncWriteStream is deprecated.' , 'DEP0061' )
2373
- } ) ;
You can’t perform that action at this time.
0 commit comments