Skip to content

Commit 791ab07

Browse files
committedFeb 8, 2023
Refactor code-style
* Add more docs to JSDoc * Add support for `null` in input of API types
1 parent 37b75fb commit 791ab07

File tree

1 file changed

+82
-35
lines changed

1 file changed

+82
-35
lines changed
 

‎lib/index.js

+82-35
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,26 @@
33
* @typedef {import('vfile').VFileOptions} Options
44
* @typedef {import('vfile').BufferEncoding} BufferEncoding
55
*
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
99
*
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.
1517
*/
1618

1719
/**
1820
* @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.
2024
* @param {VFile | null | undefined} file
25+
* File when reading or writing was successful.
2126
*/
2227

2328
import fs from 'fs'
@@ -26,31 +31,44 @@ import {URL} from 'url'
2631
import buffer from 'is-buffer'
2732
import {VFile} from 'vfile'
2833

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+
2938
/**
3039
* 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()`.
3440
*
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.
3647
* @returns {VFile}
48+
* Given `VFile` or new `VFile`.
3749
*/
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)}
4355
}
4456

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)
4661
}
4762

4863
/**
4964
* Create a virtual file and read it in, synchronously.
5065
*
5166
* @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.
5370
* @returns {VFile}
71+
* Given `VFile` or new `VFile`.
5472
*/
5573
export function readSync(description, options) {
5674
const file = toVFile(description)
@@ -59,33 +77,47 @@ export function readSync(description, options) {
5977
}
6078

6179
/**
62-
* Create a virtual file and write it in, synchronously.
80+
* Create a virtual file and write it, synchronously.
6381
*
6482
* @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.
6686
* @returns {VFile}
87+
* Given `VFile` or new `VFile`.
6788
*/
6889
export function writeSync(description, options) {
6990
const file = toVFile(description)
7091
fs.writeFileSync(path.resolve(file.cwd, file.path), file.value || '', options)
7192
return file
7293
}
7394

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+
*/
74108
export const read =
75109
/**
76110
* @type {{
77-
* (description: Compatible, options: ReadOptions, callback: Callback): void
111+
* (description: Compatible, options: BufferEncoding | ReadOptions, callback: Callback): void
78112
* (description: Compatible, callback: Callback): void
79-
* (description: Compatible, options?: ReadOptions): Promise<VFile>
113+
* (description: Compatible, options?: BufferEncoding | ReadOptions | null | undefined): Promise<VFile>
80114
* }}
81115
*/
82116
(
83117
/**
84-
* Create a virtual file and read it in, asynchronously.
85-
*
86118
* @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]
89121
*/
90122
function (description, options, callback) {
91123
const file = toVFile(description)
@@ -142,21 +174,32 @@ export const read =
142174
}
143175
)
144176

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+
*/
145190
export const write =
146191
/**
147192
* @type {{
148-
* (description: Compatible, options: WriteOptions, callback: Callback): void
193+
* (description: Compatible, options: BufferEncoding | WriteOptions, callback: Callback): void
149194
* (description: Compatible, callback: Callback): void
150-
* (description: Compatible, options?: WriteOptions): Promise<VFile>
195+
* (description: Compatible, options?: BufferEncoding | WriteOptions | null | undefined): Promise<VFile>
151196
* }}
152197
*/
153198
(
154199
/**
155-
* Create a virtual file and write it in, asynchronously.
156-
*
157200
* @param {Compatible} description
158-
* @param {WriteOptions} [options]
159-
* @param {Callback} [callback]
201+
* @param {BufferEncoding | WriteOptions | null | undefined} [options]
202+
* @param {Callback | null | undefined} [callback]
160203
*/
161204
function (description, options, callback) {
162205
const file = toVFile(description)
@@ -213,8 +256,12 @@ export const write =
213256
)
214257

215258
/**
216-
* @param {Compatible | undefined} value
259+
* Check if something looks like a vfile.
260+
*
261+
* @param {Compatible | null | undefined} value
262+
* Value.
217263
* @returns {value is VFile}
264+
* Whether `value` looks like a `VFile`.
218265
*/
219266
function looksLikeAVFile(value) {
220267
return Boolean(

0 commit comments

Comments
 (0)
Please sign in to comment.