Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
| // Utility function for detecting generators. | |
| let isGenerator = x => { | |
| return Function.isGenerator && | |
| Function.isGenerator.call(x) | |
| } | |
| // Data type represents channel into which values | |
| // can be `put`, or `received` from. Channel is | |
| // very much like queue where reads and writes are | |
| // synchronized via continuation passing. |
Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.