dev101
dev101
I don't have implementation yet, though it's straightforward. Will prepare next week. `URLController` is not always applicable, e.g. several components working on the same page without any transitions. Imagine gmail-like...
Btw is _unsubscribe_ the best name for this method? You chose to have names in `Context` different from their _pubsub_'s counterparts, so maybe you'd like to continue: - publish -...
do you mean we should rename `Context.notify()` to `Context.publish()`, etc? That would break backward compatibility...
i'd recommend using **~3** instead of specific version, so that any ko version can be used.
If your mailbox contains 1000s of emails, I guess you just need to limit the result set by using some filtering options like `after`.
@dougmoscrop you mean https://github.com/floydspace/serverless-esbuild ? never heard of it until today. serverless-plugin-include-dependencies worked just fine for me as I primarily maintain legacy cjs code, until some day some dependencies are...
Probably I was not straightforward: in [IE7/8, `splice()` **requires** 2 arguments](http://msdn.microsoft.com/en-us/library/wctc5k7s%28v=VS.85%29.aspx), while you [provide only 1](https://github.com/federico-lox/pubsub.js/blob/master/src/pubsub.js#L56). Without the 2nd argument, `splice()` will **silently do nothing** in IE7/8, effectively returning **empty**...