Searched refs:sortMethod (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/npm/node_modules/asynckit/lib/ |
D | state.js | 13 function state(list, sortMethod) argument 19 keyedList: isNamedList || sortMethod ? Object.keys(list) : null, 26 if (sortMethod) 30 initState.keyedList.sort(isNamedList ? sortMethod : function(a, b) 32 return sortMethod(list[a], list[b]);
|
D | readable_serial_ordered.js | 18 function ReadableSerialOrdered(list, iterator, sortMethod, callback) argument 22 return new ReadableSerialOrdered(list, iterator, sortMethod, callback); 28 this._start(serialOrdered, list, iterator, sortMethod, callback);
|
/third_party/node/deps/npm/node_modules/asynckit/ |
D | serialOrdered.js | 21 function serialOrdered(list, iterator, sortMethod, callback) argument 23 var state = initState(list, sortMethod);
|