(arr, item)
| 328 | |
| 329 | // Because node doesn't have Parse._.contains |
| 330 | function arrayContains(arr, item) { |
| 331 | return -1 != arr.indexOf(item); |
| 332 | } |
| 333 | |
| 334 | // Normalizes a JSON object. |
| 335 | function normalize(obj) { |
no outgoing calls
no test coverage detected