can-derive
can-derive copied to clipboard
Derive live can.List and can.Maps from source lists.
This pull request was created with [Landscaper](https://github.com/bitovi/landscaper). The following code mods were used to create this PR: 1. **https://gist.github.com/cherifGsoul/def29ecbfa9ff53b859d466c7929870c** Please review this PR carefully as Landscaper does not guarantee any...
This pull request was created with [Landscaper](https://github.com/bitovi/landscaper). The following code mods were used to create this PR: 1. **https://gist.github.com/cherifGsoul/e82fd3546da2c3bdabe4b4b9c918d361** Please review this PR carefully as Landscaper does not guarantee any...
[](https://ci.appveyor.com/project/matthewp/can-derive) [](https://coveralls.io/github/canjs/can-derive?branch=master) [](https://greenkeeper.io/)
Let’s get started with automated dependency management for can-derive :muscle: This pull request **updates all your dependencies to their latest version**. Having them all up to date really is the...
Let’s get started with automated dependency management for can-derive :muscle: This pull request **updates all your dependencies to their latest version**. Having them all up to date really is the...
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.