Skip to content

Commit cd3cbf2

Browse files
committed
Added Fs module
1 parent 997a577 commit cd3cbf2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Fs.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
'use strict'
2+
const curry = require('./curry')
3+
const fill = require('./fill')
4+
5+
function Fs(n) {
6+
return fill(n, false)
7+
}
8+
9+
module.exports = curry(Fs)

0 commit comments

Comments
 (0)