UNPKG
inst
Version:
latest (1.1.0)
1.1.0
1.0.0
0.2.2
0.2.1
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
Faster npm installs via caching whole node_module dir
github.com/runk/node-inst
runk/node-inst
inst
/
lib
/
tar.js
6 lines
(4 loc)
•
127 B
JavaScript
View Raw
1
2
3
4
5
6
if
(~process.platform.indexOf(
'win'
))
module
.exports =
require
(
'./tar/win'
);
else
module
.exports =
require
(
'./tar/unix'
);