3
3
* @typedef {import('vfile').VFileOptions } Options
4
4
* @typedef {import('vfile').BufferEncoding } BufferEncoding
5
5
*
6
- * @typedef {number| string } Mode
7
- * @typedef {BufferEncoding| {encoding?: null|BufferEncoding , flag?: string} } ReadOptions
8
- * @typedef {BufferEncoding| {encoding?: null| undefined| BufferEncoding, mode?: Mode | undefined, flag?: string | undefined} } WriteOptions
6
+ * @typedef {number | string } Mode
7
+ * @typedef {{encoding?: BufferEncoding | null | undefined , flag?: string | undefined } } ReadOptions
8
+ * @typedef {{encoding?: null | undefined | BufferEncoding, mode?: Mode | undefined, flag?: string | undefined} } WriteOptions
9
9
*
10
- * @typedef {URL|Value } Path
11
- * Path of the file.
12
- * Note: `Value` is used here because it’s a smarter `Buffer`
13
- * @typedef {Path|Options|VFile } Compatible
14
- * Things that can be passed to the function.
10
+ *
11
+ * @typedef {URL | Value } Path
12
+ * URL to file or path to file.
13
+ *
14
+ * > 👉 **Note**: `Value` is used here because it’s a smarter `Buffer`
15
+ * @typedef {Path | Options | VFile } Compatible
16
+ * URL to file, path to file, options for file, or actual file.
15
17
*/
16
18
17
19
/**
18
20
* @callback Callback
19
- * @param {NodeJS.ErrnoException|null } error
21
+ * Callback called after reading or writing a file.
22
+ * @param {NodeJS.ErrnoException | null } error
23
+ * Error when reading or writing was not successful.
20
24
* @param {VFile | null | undefined } file
25
+ * File when reading or writing was successful.
21
26
*/
22
27
23
28
import fs from 'fs'
@@ -26,31 +31,44 @@ import {URL} from 'url'
26
31
import buffer from 'is-buffer'
27
32
import { VFile } from 'vfile'
28
33
34
+ // To do: next major: use `node:` prefix.
35
+ // To do: next major: use `URL` from global.
36
+ // To do: next major: Only pass `undefined`.
37
+
29
38
/**
30
39
* Create a virtual file from a description.
31
- * If `options` is a string or a buffer, it’s used as the path.
32
- * If it’s a VFile itself, it’s returned instead.
33
- * In all other cases, the options are passed through to `vfile()`.
34
40
*
35
- * @param {Compatible } [options]
41
+ * If `options` is a string, URL, or buffer, it’s used as the path.
42
+ * Otherwise, if it’s a `VFile`, that’s returned instead.
43
+ * Otherwise, the options are passed through to `new VFile()`.
44
+ *
45
+ * @param {Compatible | null | undefined } [description]
46
+ * Path to file, file options, or file itself.
36
47
* @returns {VFile }
48
+ * Given `VFile` or new `VFile`.
37
49
*/
38
- export function toVFile ( options ) {
39
- if ( typeof options === 'string' || options instanceof URL ) {
40
- options = { path : options }
41
- } else if ( buffer ( options ) ) {
42
- options = { path : String ( options ) }
50
+ export function toVFile ( description ) {
51
+ if ( typeof description === 'string' || description instanceof URL ) {
52
+ description = { path : description }
53
+ } else if ( buffer ( description ) ) {
54
+ description = { path : String ( description ) }
43
55
}
44
56
45
- return looksLikeAVFile ( options ) ? options : new VFile ( options )
57
+ return looksLikeAVFile ( description )
58
+ ? description
59
+ : // To do: remove when `VFile` allows explicit `null`.
60
+ new VFile ( description || undefined )
46
61
}
47
62
48
63
/**
49
64
* Create a virtual file and read it in, synchronously.
50
65
*
51
66
* @param {Compatible } description
52
- * @param {ReadOptions } [options]
67
+ * Path to file, file options, or file itself.
68
+ * @param {BufferEncoding | ReadOptions | null | undefined } [options]
69
+ * Encoding to use or Node.JS read options.
53
70
* @returns {VFile }
71
+ * Given `VFile` or new `VFile`.
54
72
*/
55
73
export function readSync ( description , options ) {
56
74
const file = toVFile ( description )
@@ -59,33 +77,47 @@ export function readSync(description, options) {
59
77
}
60
78
61
79
/**
62
- * Create a virtual file and write it in , synchronously.
80
+ * Create a virtual file and write it, synchronously.
63
81
*
64
82
* @param {Compatible } description
65
- * @param {WriteOptions } [options]
83
+ * Path to file, file options, or file itself.
84
+ * @param {BufferEncoding | WriteOptions | null | undefined } [options]
85
+ * Encoding to use or Node.JS write options.
66
86
* @returns {VFile }
87
+ * Given `VFile` or new `VFile`.
67
88
*/
68
89
export function writeSync ( description , options ) {
69
90
const file = toVFile ( description )
70
91
fs . writeFileSync ( path . resolve ( file . cwd , file . path ) , file . value || '' , options )
71
92
return file
72
93
}
73
94
95
+ /**
96
+ * Create a virtual file and read it in, async.
97
+ *
98
+ * @param description
99
+ * Path to file, file options, or file itself.
100
+ * @param options
101
+ * Encoding to use or Node.JS read options.
102
+ * @param callback
103
+ * Callback called when done.
104
+ * @returns
105
+ * Nothing when a callback is given, otherwise promise that resolves to given
106
+ * `VFile` or new `VFile`.
107
+ */
74
108
export const read =
75
109
/**
76
110
* @type {{
77
- * (description: Compatible, options: ReadOptions, callback: Callback): void
111
+ * (description: Compatible, options: BufferEncoding | ReadOptions, callback: Callback): void
78
112
* (description: Compatible, callback: Callback): void
79
- * (description: Compatible, options?: ReadOptions): Promise<VFile>
113
+ * (description: Compatible, options?: BufferEncoding | ReadOptions | null | undefined ): Promise<VFile>
80
114
* }}
81
115
*/
82
116
(
83
117
/**
84
- * Create a virtual file and read it in, asynchronously.
85
- *
86
118
* @param {Compatible } description
87
- * @param {ReadOptions | null } [options]
88
- * @param {Callback } [callback]
119
+ * @param {BufferEncoding | ReadOptions | null | undefined } [options]
120
+ * @param {Callback | null | undefined } [callback]
89
121
*/
90
122
function ( description , options , callback ) {
91
123
const file = toVFile ( description )
@@ -142,21 +174,32 @@ export const read =
142
174
}
143
175
)
144
176
177
+ /**
178
+ * Create a virtual file and write it, async.
179
+ *
180
+ * @param description
181
+ * Path to file, file options, or file itself.
182
+ * @param options
183
+ * Encoding to use or Node.JS write options.
184
+ * @param callback
185
+ * Callback called when done.
186
+ * @returns
187
+ * Nothing when a callback is given, otherwise promise that resolves to given
188
+ * `VFile` or new `VFile`.
189
+ */
145
190
export const write =
146
191
/**
147
192
* @type {{
148
- * (description: Compatible, options: WriteOptions, callback: Callback): void
193
+ * (description: Compatible, options: BufferEncoding | WriteOptions, callback: Callback): void
149
194
* (description: Compatible, callback: Callback): void
150
- * (description: Compatible, options?: WriteOptions): Promise<VFile>
195
+ * (description: Compatible, options?: BufferEncoding | WriteOptions | null | undefined ): Promise<VFile>
151
196
* }}
152
197
*/
153
198
(
154
199
/**
155
- * Create a virtual file and write it in, asynchronously.
156
- *
157
200
* @param {Compatible } description
158
- * @param {WriteOptions } [options]
159
- * @param {Callback } [callback]
201
+ * @param {BufferEncoding | WriteOptions | null | undefined } [options]
202
+ * @param {Callback | null | undefined } [callback]
160
203
*/
161
204
function ( description , options , callback ) {
162
205
const file = toVFile ( description )
@@ -213,8 +256,12 @@ export const write =
213
256
)
214
257
215
258
/**
216
- * @param {Compatible | undefined } value
259
+ * Check if something looks like a vfile.
260
+ *
261
+ * @param {Compatible | null | undefined } value
262
+ * Value.
217
263
* @returns {value is VFile }
264
+ * Whether `value` looks like a `VFile`.
218
265
*/
219
266
function looksLikeAVFile ( value ) {
220
267
return Boolean (
0 commit comments