Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit ca34d52

Browse files
author
Alan Shaw
committed
chore: appease linter
License: MIT Signed-off-by: Alan Shaw <[email protected]>
1 parent 89839d4 commit ca34d52

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/utils/files/glob-source.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ const errCode = require('err-code')
1616
* Create a pull stream source that can be piped to ipfs.addPullStream for the
1717
* provided file paths.
1818
*
19-
* @param ...paths {String} File system path(s) to glob from
20-
* @param [options] {Object} Optional options
21-
* @param [options.recursive] {Boolean} Recursively glob all paths in directories
22-
* @param [options.hidden] {Boolean} Include .dot files in matched paths
23-
* @param [options.ignore] {Array<String>} Glob paths to ignore
24-
* @param [options.followSymlinks] {Boolean} follow symlinks
19+
* @param {String} ...paths File system path(s) to glob from
20+
* @param {Object} [options] Optional options
21+
* @param {Boolean} [options.recursive] Recursively glob all paths in directories
22+
* @param {Boolean} [options.hidden] Include .dot files in matched paths
23+
* @param {Array<String>} [options.ignore] Glob paths to ignore
24+
* @param {Boolean} [options.followSymlinks] follow symlinks
25+
* @returns {Function} pull stream source
2526
*/
2627
module.exports = (...args) => {
2728
const options = isString(args[args.length - 1]) ? {} : args.pop()

0 commit comments

Comments
 (0)