UNPKG
@npmcli/fs
Version:
latest (5.0.0)
5.0.0
4.0.0
3.1.1
3.1.0
3.0.0
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
1.1.1
1.1.0
1.0.0
filesystem utilities for the npm cli
github.com/npm/fs
npm/fs
@npmcli/fs
/
lib
/
index.js
14 lines
(11 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
const
cp =
require
(
'./cp/index.js'
)
const
withTempDir =
require
(
'./with-temp-dir.js'
)
const
readdirScoped =
require
(
'./readdir-scoped.js'
)
const
moveFile =
require
(
'./move-file.js'
)
module
.
exports
= { cp, withTempDir, readdirScoped, moveFile, }