Merge pull request #66 from SiPlus/master

Change Array.prototype.slice.call(items) to items.slice()
This commit is contained in:
Spike Brehm
2013-04-19 07:54:41 -07:00

View File

@@ -139,7 +139,7 @@
}
// good
itemsCopy = Array.prototype.slice.call(items);
itemsCopy = items.slice();
```
**[[⬆]](#TOC)**