Lines Matching refs:Item
133 * Determine if the passed item is a String
134 * @param {*} item Item to test.
137 var isString = function(item) {
138 return typeof item == 'string';
142 * Determine if the passed item is a Function object
143 * @param {*} item Item to test.
146 var isFunction = function(item) {
148 item && (
149 typeof item == 'function' || item instanceof Function
155 * Determine if the passed item is an array.
156 * @param {*} item Item to test.
159 var isArray = function(item){
161 item && (
162 item instanceof Array || (
163 typeof item == 'object' &&
164 typeof item.length != undefStr
210 obj.item ? _slowToArray : _efficientToArray
219 isString(cb) ? new Function('item', 'index', 'array', cb) : cb
227 * each item in the array
481 forEach(_loadedListenerList, 'item();');
514 * returns an item based on DOM ID. Optionally a doucment may be provided to