pofider / node-simple-odata-server

Simple OData server for node.js
MIT License
97 stars 60 forks source link

removed unnecessary for() #15

Closed mgouault closed 8 years ago

mgouault commented 8 years ago

This should optimize execution time, because if I'm not wrong this for loops unnecessarily the same docs variable over and over not matter what, and the array case is already handled in prune function (line 3).

pofider commented 8 years ago

Yes, thanks.