/** * @packageDocumentation * * Consumes all values from an (async)iterable and returns them sorted by the passed sort function. * * @example * * ```javascript * import sort from 'it-sort' * import all from 'it-all' * * const sorter = (a, b) => { * return a.localeCompare(b) * } * * // This can also be an iterator, generator, etc * const values = ['foo', 'bar'] * * const arr = all(sort(values, sorter)) * * console.info(arr) // 'bar', 'foo' * ``` * * Async sources must be awaited: * * ```javascript * import sort from 'it-sort' * import all from 'it-all' * * const sorter = (a, b) => { * return a.localeCompare(b) * } * * const values = async function * () { * yield * ['foo', 'bar'] * } * * const arr = await all(sort(values, sorter)) * * console.info(arr) // 'bar', 'foo' * ``` */ export interface CompareFunction { (a: T, b: T): number; } /** * Collects all values from an async iterator, sorts them * using the passed function and yields them */ declare function sort(source: Iterable, sorter: CompareFunction): Generator; declare function sort(source: Iterable | AsyncIterable, sorter: CompareFunction): AsyncGenerator; export default sort; //# sourceMappingURL=index.d.ts.map