This repository was archived by the owner on Feb 12, 2024. It is now read-only.
File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,13 @@ const errCode = require('err-code')
16
16
* Create a pull stream source that can be piped to ipfs.addPullStream for the
17
17
* provided file paths.
18
18
*
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
25
26
*/
26
27
module . exports = ( ...args ) => {
27
28
const options = isString ( args [ args . length - 1 ] ) ? { } : args . pop ( )
You can’t perform that action at this time.
0 commit comments