main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
591 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 |
|
---|
3 | Object.defineProperty(exports, "__esModule", {
|
---|
4 | value: true
|
---|
5 | });
|
---|
6 | exports.stat = exports.readFile = void 0;
|
---|
7 | function _fs() {
|
---|
8 | const data = require("fs");
|
---|
9 | _fs = function () {
|
---|
10 | return data;
|
---|
11 | };
|
---|
12 | return data;
|
---|
13 | }
|
---|
14 | function _gensync() {
|
---|
15 | const data = require("gensync");
|
---|
16 | _gensync = function () {
|
---|
17 | return data;
|
---|
18 | };
|
---|
19 | return data;
|
---|
20 | }
|
---|
21 | const readFile = exports.readFile = _gensync()({
|
---|
22 | sync: _fs().readFileSync,
|
---|
23 | errback: _fs().readFile
|
---|
24 | });
|
---|
25 | const stat = exports.stat = _gensync()({
|
---|
26 | sync: _fs().statSync,
|
---|
27 | errback: _fs().stat
|
---|
28 | });
|
---|
29 | 0 && 0;
|
---|
30 |
|
---|
31 | //# sourceMappingURL=fs.js.map
|
---|
Note:
See
TracBrowser
for help on using the repository browser.