- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
40 lines
873 B
TypeScript
40 lines
873 B
TypeScript
/**
|
|
* @packageDocumentation
|
|
*
|
|
* Return the first value in an (async)iterable
|
|
*
|
|
* @example
|
|
*
|
|
* ```javascript
|
|
* import first from 'it-first'
|
|
*
|
|
* // This can also be an iterator, generator, etc
|
|
* const values = [0, 1, 2, 3, 4]
|
|
*
|
|
* const res = first(values)
|
|
*
|
|
* console.info(res) // 0
|
|
* ```
|
|
*
|
|
* Async sources must be awaited:
|
|
*
|
|
* ```javascript
|
|
* import first from 'it-first'
|
|
*
|
|
* const values = async function * () {
|
|
* yield * [0, 1, 2, 3, 4]
|
|
* }
|
|
*
|
|
* const res = await first(values())
|
|
*
|
|
* console.info(res) // 0
|
|
* ```
|
|
*/
|
|
/**
|
|
* Returns the first result from an (async) iterable, unless empty, in which
|
|
* case returns `undefined`
|
|
*/
|
|
declare function first<T>(source: Iterable<T>): T | undefined;
|
|
declare function first<T>(source: Iterable<T> | AsyncIterable<T>): Promise<T | undefined>;
|
|
export default first;
|
|
//# sourceMappingURL=index.d.ts.map
|