UNPKG
@forabi/memfs
Version:
latest (2.7.2)
2.7.2
In-memory file-system with Node's fs API.
github.com/streamich/memfs
streamich/memfs
@forabi/memfs
/
demo
/
permissions.ts
11 lines
(5 loc)
•
208 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Volume
}
from
'../src/index'
;
const
vol =
Volume
.
fromJSON
({
'/foo'
:
'bar'
});
console
.
log
(vol.
readFileSync
(
'/foo'
,
'utf8'
)); vol.
chmodSync
(
'/foo'
,
0
);
console
.
log
(vol.
readFileSync
(
'/foo'
,
'utf8'
));