fix spread and super resolution - fixes #42

This commit is contained in:
Sebastian McKenzie
2014-10-11 10:44:51 +11:00
parent 603ae290cd
commit 3fb17b00a6
8 changed files with 44 additions and 11 deletions

View File

@@ -1 +1,2 @@
foob.add(foo, bar, ...numbers);
foob.test.add(foo, bar, ...numbers);

View File

@@ -2,3 +2,7 @@ foob.add.apply(foob, [
foo,
bar
].concat(numbers));
foob.test.add.apply(foob.test, [
foo,
bar
].concat(numbers));