Nik
Nik
@dominictarr - here's an interesting thing. Using `depject` to refactor this tree code has given me insights into the required underlying architecture needed to meet my use cases to such...
Yeah I finally got everything working nicely in the `depject` refactor by 5pm yesterday. was really happy with it, then on the bus home I had this flash of insight...
You can maybe do something like this? It's backwards compatible and the tests still pass, but I've only tried it on a trivial example (it worked) and I've really got...
It's easy enough to just keep the array of modules that you originally passed to `combine`, modify that when you need extra modules and just call `combine` again. If the...
@dominictarr do you mean what I used the above code for, or what I use post-plugins in general for? If a) I didn't use it for anything, was just an...
Primarily for a website builder/CMS. But I reuse a lot of the code for various personal projects as well, I mean, I have a game that I've been dicking around...
Just implement depject in depject, then you could plug your own apply modules in Not sure if I'm joking or if this is actually a good idea *Goes away and...
When I rebuild some of my stuff to use depject I'll be needing reduce, the pattern I currently use makes use of wrapped functions all the time. Some examples: A...
There are a bunch of functions, especially core ones that manipulate the underlying data, that with certain combinations of plugins will get wrapped multiple times, so if I understand correctly...
What are some real world things people are using `map` for? I understand what it does and how it's implemented, just wondering what some concrete examples might be.