If you are using this already, consider changes soon due the discussion around current ESX proposal.
Feel free to keep an eye on udomsay as that will be the implementation reference for consumers.
If you are using this already, consider changes soon due the discussion around current ESX proposal.
Feel free to keep an eye on udomsay as that will be the implementation reference for consumers.
This is a proposal for a lightning talk at Reactive Conf. Please π this gist to push the proposal! If you're on your phone, please request the π₯ desktop site to star this gist π #ReactiveConf
This content moved here: https://exploringjs.com/impatient-js/ch_arrays.html#quickref-arrays
export interface Promisify { | |
<T>(func: (callback: (err: any, result: T) => void) => void): () => Promise<T>; | |
<T, A1>(func: (arg1: A1, callback: (err: any, result: T) => void) => void): (arg1: A1) => Promise<T>; | |
<T, A1, A2>(func: (arg1: A1, arg2: A2, callback: (err: any, result: T) => void) => void): (arg1: A1, arg2: A2) => Promise<T>; | |
<T, A1, A2, A3>(func: (arg1: A1, arg2: A2, arg3: A3, callback: (err: any, result: T) => void) => void): (arg1: A1, arg2: A2, arg3: A3) => Promise<T>; | |
<T, A1, A2, A3, A4>(func: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: (err: any, result: T) => void) => void): (arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Promise<T>; | |
<T, A1, A2, A3, A4, A5>(func: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: (err: any, result: T) => void) => void): (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Promise<T>; | |
} | |
/** | |
* @example: const rReadFile = promisify<Buffer, string>(fs.readFile); |
This snippets add super Simple Node.js String Colors Support. | |
See here: | |
http://stackoverflow.com/questions/32474241/node-js-terminal-color | |
http://stackoverflow.com/questions/9781218/how-to-change-node-jss-console-font-color |
# Hello, and welcome to makefile basics. | |
# | |
# You will learn why `make` is so great, and why, despite its "weird" syntax, | |
# it is actually a highly expressive, efficient, and powerful way to build | |
# programs. | |
# | |
# Once you're done here, go to | |
# http://www.gnu.org/software/make/manual/make.html | |
# to learn SOOOO much more. |