jvivs

Results 4 comments of jvivs

+1 for @BrainSlugs83's described sequence chords

I'd suggest avoiding an uppercase for `Cache` unless it is actually a class-like thing. It appears that `cached` is a factory method for creating new instances of `Cache`, correct? If...

It seems the thing returned by `cached()` that you actually interact with is a layer of abstraction--sometimes its an in-memory cache and sometimes its a memcache pool running elsewhere. The...

Try out this solution: https://github.com/speedskater/babel-plugin-rewire/issues/109#issuecomment-200867686. I was able to get past the invalid variable access issue by switching from `import *` syntax to explicit imports. Explicit imports seem like a...