canjs / can-zone

A context for tracking asynchronous activity in JavaScript applications.
https://v4.canjs.com/doc/can-zone.html
MIT License
92 stars 4 forks source link

Allow taking an Array in the constructor argument #133

Closed matthewp closed 7 years ago

matthewp commented 7 years ago

Instead of having to do:

new Zone({
  plugins: [...]
});

This would be nice if you're only using plugins:

new Zone([
  ...
]);