Kyle Simpson
Kyle Simpson
My home page -- where I do most of my console'ing -- is `about:blank`. I also use this extension for blank new tabs: https://chrome.google.com/webstore/detail/blank-new-tab-page/jonikckfpolfcdcgdficelkfffkloemh In both cases, `$i` is not...
What strikes me about this feature is that we're asking developers to have some intuition about when something is too big to happen "fast enough" that they need to push...
```js function foo() { var y = 3; var w = function baz(){ var p = 2; }; } ``` In that code, the identifier `baz` should be in the...
Produce ES6 versions of the code and ES5 transpilations (for `feeds.js` and `ui.js`). Include a script for using babel to reproduce these. Have both sets of scripts listed in the...
Take a trick from Node's `promisify(..)` utility... if asked to promisify a function that has a special symbol on it, the function at that symbol is returned, instead of creating...
In addition, bundle.js needs to optionally include a test only if building with the plugin in question.
``` js var stream1 = ASQ.react(..); var stream2 = ASQ.react(..); var stream3 = ASQ.react.????( stream1, stream2 ); ```
depends on #77 1. reorg builds into subdirs with package.json's in them, to make node `require(..)` usage easier 2. add a build for "reactive" and for "csp", at a minimum.
1. annotate any plugin inter-dependencies 2. add [ScanTree](https://github.com/getify/ScanTree) 3. change `bundle` tool to check for dependency failures and to re-order by ScanTree output.