Commit 9bdab10 1 parent 61b575a commit 9bdab10 Copy full SHA for 9bdab10
File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ console.log(data);
53
53
readify (' /' , {
54
54
type: ' raw' ,
55
55
}).then (console .log );
56
+
56
57
// output
57
58
({
58
59
path: ' /' ,
@@ -71,6 +72,7 @@ readify('/', {
71
72
sort: ' size' ,
72
73
order: ' desc' ,
73
74
}).then (console .log );
75
+
74
76
// output
75
77
({
76
78
path: ' /' ,
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
const process = require ( 'node:process' ) ;
4
- const isUndefined = ( a ) => typeof a === 'undefined' ;
4
+
5
5
const format = require ( 'format-io' ) ;
6
6
const currify = require ( 'currify' ) ;
7
7
const tryToCatch = require ( 'try-to-catch' ) ;
8
8
9
9
const sortify = require ( '@cloudcmd/sortify' ) ;
10
10
const formatify = require ( '@cloudcmd/formatify' ) ;
11
11
12
- const WIN = process . platform === 'win32' ;
13
-
14
12
const readdir = require ( './readdir' ) ;
13
+ const WIN = process . platform === 'win32' ;
14
+ const isUndefined = ( a ) => typeof a === 'undefined' ;
15
15
const nicki = ! WIN && require ( 'nicki' ) ;
16
16
const replaceProperty = currify ( _replaceProperty ) ;
17
17
const ifRaw = currify ( _ifRaw ) ;
You can’t perform that action at this time.
0 commit comments