File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ var iterate = require('array-iterate')
4
4
5
5
module . exports = modifierFactory
6
6
7
- /* Turn `callback` into a child-modifier accepting a parent.
8
- * See `array-iterate` for more info. */
7
+ // Turn `callback` into a child-modifier accepting a parent. See
8
+ // `array-iterate` for more info.
9
9
function modifierFactory ( callback ) {
10
10
return iteratorFactory ( wrapperFactory ( callback ) )
11
11
}
12
12
13
- /* Turn `callback` into a `iterator' accepting a parent. */
13
+ // Turn `callback` into a `iterator' accepting a parent.
14
14
function iteratorFactory ( callback ) {
15
15
return iterator
16
16
@@ -25,7 +25,7 @@ function iteratorFactory(callback) {
25
25
}
26
26
}
27
27
28
- /* Pass the context as the third argument to `callback`. */
28
+ // Pass the context as the third argument to `callback`.
29
29
function wrapperFactory ( callback ) {
30
30
return wrapper
31
31
You can’t perform that action at this time.
0 commit comments