-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path9-thenable.js
More file actions
47 lines (39 loc) · 779 Bytes
/
9-thenable.js
File metadata and controls
47 lines (39 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
'use strict';
const fs = require('node:fs');
class Thenable {
constructor() {
this.next = null;
this.fn = null;
}
then(fn) {
this.fn = fn;
const next = new Thenable();
this.next = next;
return next;
}
resolve(value) {
const fn = this.fn;
if (fn) {
const next = fn(value);
if (next) {
next.then((value) => {
this.next.resolve(value);
});
}
}
}
}
// Usage
const readFile = (filename) => {
const thenable = new Thenable();
fs.readFile(filename, 'utf8', (err, data) => {
if (err) throw err;
thenable.resolve(data);
});
return thenable;
};
const main = async () => {
const file1 = await readFile('9-thenable.js');
console.dir({ length: file1.length });
};
main();