First, let’s get Xcode and the command line tools installed. We can install Xcode via the App Store or by downloading it from the Apple developer site. Once we have Xcode installed (it will take a while), we need to install the command line tools as these are needed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"lastUpload":"2018-10-02T14:04:35.231Z","extensionVersion":"v3.1.2"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const thenable = { | |
| then: function(resolve) { | |
| this.resolve = resolve; | |
| } | |
| } | |
| // interrupting promise | |
| const interruptor = Promise.resolve(thenable); | |
| // payload promise |