We have moved: https://github.com/magnetikonline/linuxmicrosoftievirtualmachines
Due to the popularity of this Gist, and the work in keeping it updated via a Gist, all future updates will take place at the above location. Thanks!
| const isThenable = p => | |
| p && typeof p.then === 'function' | |
| const isPromisable = p => | |
| isThenable(p) && typeof p.catch === 'function' | |
| class Prom { | |
| /** |
We have moved: https://github.com/magnetikonline/linuxmicrosoftievirtualmachines
Due to the popularity of this Gist, and the work in keeping it updated via a Gist, all future updates will take place at the above location. Thanks!