Michael J. Ryan
Michael J. Ryan
Would also help with #21 for surrogate matching `\x00\x0a` or `\x0a\x00` as the case may be.
Edited example code to return the promise chain, can be awaited outside this module as the result is a promise. Also sanity check for Promise and fetch... really only needed...
Note: I added the queue/batch stacking for the outbound requests... but for other use cases, would still be able to inline the await, a record at a time, such as...
@msalahat for the record, I have yet to see a *PURE* API that is REST only, without side effects or some RPC calls. At least none that have any complexity...
I know this is old... but just had a though regarding adding async... Add a ".promise" method onto each given method for an async version that returns a promise (ex...
See [readline](https://www.npmjs.com/package/readline) or [readline-sync](https://www.npmjs.com/package/readline-sync) `readline-sync` defaults to stdio, for `readline` you'll need something like below... ``` js //readline var readline = require('readline'); var rl = readline.createInterface({ input: process.stdin, output: process.stdout,...
@jfmherokiller I'm definitely still interrested, just totally lost track and hadn't looked in a while... I don't think I really need the full hayes support, as I should be able...
I think the public ISO downloads started with Windows 7. but there are ISOs from MSDN and can check against published checksums.
I do think it would be cool to support sixel as well as 1337 sequence... I do think that whatever is displayed should be potentially resized if too wide, and...
Couldn't you just add an ansi/xterm color sequence inside the prefix/suffix config, assuming those are already present? Not sure if there's escape character support `\e` etc. ``` prefix: "\e[0m((\e[1;32m" #...