4.4.0 • Published 5 years ago

@ltd/j-thenable v4.4.0

Weekly downloads
-
License
LGPL-3.0
Repository
github
Last release
5 years ago
const Thenable = require('@ltd/j-thenable');

console.log(0);

const thenable = new Thenable(function executor (resolve) {
    console.log(1)
    resolve();
    console.log(2);
}).then(function () {
    console.log(3);
});

console.log(4);

thenable.then(function () {
    console.log(5);
})

console.log(6);
4.4.0

5 years ago

4.2.1

5 years ago

4.1.1

5 years ago

4.1.0

5 years ago

4.0.1

5 years ago

4.0.0

5 years ago

3.0.0

5 years ago

2.0.0

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago