Chris Gomez
Chris Gomez
Removing this line at the end of the file seems to help: ``` //# sourceMappingURL=viewmodel.js.map ```
I used Later's `dayOfWeek` to populate a cron string that Later would then parse. The result was always off by one day because of the differing `dayOfWeek` definitions. Maybe there...
Computes don't setup bindings on dependent properties until they're bound: ``` var firstName = can.compute('Chris'); var lastName = can.compute('Gomez'); var fullName = can.compute(function () { return firstName() + ' '...
Currently the initial predicate tree is populated in `O(n)`, but the initial filtered tree is populated in `O(mlog(n))`. We should use the same "batch insert" approach that the predicate tree...
Each test is too big and tests too many things. It's hard to debug if a test fails.
The goal of the can-derive project is to provide all of the same methods that might be found in a project like lodash or underscore. We should talk about that....
It's possible that you could be iterating a derived list and modify an item in the source list which will influence the derived list that you're iterating. Fix that.
Given a Mongoose service configured for relationships with `{ ref: 'modelName' }`, when subscribing via a `.find()` query that includes the special `$populate` parameter, and a `patch` update is received,...