UNPKG

tastypie

Version:

Tastypie is a webservice API framework for Node.js based on Django's Tastypie Framework. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces

35 lines (29 loc) 869 B
define(['../function/makeIterator_'], function (makeIterator) { /** * Return maximum value inside array */ function max(arr, iterator, thisObj){ if (arr == null || !arr.length) { return Infinity; } else if (arr.length && !iterator) { return Math.max.apply(Math, arr); } else { iterator = makeIterator(iterator, thisObj); var result, compare = -Infinity, value, temp; var i = -1, len = arr.length; while (++i < len) { value = arr[i]; temp = iterator(value, i, arr); if (temp > compare) { compare = temp; result = value; } } return result; } } return max; });