CyberChef/src/js
toby 343d350af8 Initial async work
Operations can now:
1) return their progress directly.
2) throw an error.
3) (ADDED) return a promise:
  + that resolves to their progress.
  + that rejects an error message (like throwing but asynchronous).
  For an example see the new operation "Wait" (Flow Control)

Added a flow control operation "Wait", which waits for the number of
milliseconds passed in as its argument. It is a fairly useless operation
but it does demonstrate how asynchronous operations now work.

A recipe like:
```
Fork
Wait (1000ms)
```
will only wait for 1000ms (each wait runs at the same time as each
other).

I have not looked into performance implications yet, also this code is
probably more complicated than it needs to be (would love help on this).
2017-02-14 14:54:51 -05:00
..
config Initial async work 2017-02-14 14:54:51 -05:00
core Initial async work 2017-02-14 14:54:51 -05:00
lib Added 'MD2', 'MD4' and 'SHA0' operations. Closes #52. 2017-01-16 16:40:43 +00:00
operations Change description in Base58.js 2017-02-10 13:45:20 -05:00
views/html Initial async work 2017-02-14 14:54:51 -05:00
.eslintrc.json Updated eslint whitespace rules 2017-02-09 15:09:33 +00:00