معرفی شرکت ها


it-first-3.0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Returns the first result from an async iterator
ویژگی مقدار
سیستم عامل -
نام فایل it-first-3.0.1
نام it-first
نسخه کتابخانه 3.0.1
نگهدارنده ['achingbrain']
ایمیل نگهدارنده ['alex@achingbrain.net']
نویسنده Alex Potsides
ایمیل نویسنده alex@achingbrain.net
آدرس صفحه اصلی git+https://github.com/achingbrain/it.git
آدرس اینترنتی https://github.com/achingbrain/it/tree/master/packages/it-first#readme
مجوز Apache-2.0 OR MIT
# it-first <!-- omit in toc --> [![codecov](https://img.shields.io/codecov/c/github/achingbrain/it.svg?style=flat-square)](https://codecov.io/gh/achingbrain/it) [![CI](https://img.shields.io/github/actions/workflow/status/achingbrain/it/js-test-and-release.yml?branch=master\&style=flat-square)](https://github.com/achingbrain/it/actions/workflows/js-test-and-release.yml?query=branch%3Amaster) > Returns the first result from an async iterator ## Table of contents <!-- omit in toc --> - [Install](#install) - [Browser `<script>` tag](#browser-script-tag) - [Usage](#usage) - [License](#license) - [Contribution](#contribution) ## Install ```console $ npm i it-first ``` ### Browser `<script>` tag Loading this module through a script tag will make it's exports available as `ItFirst` in the global namespace. ```html <script src="https://unpkg.com/it-first/dist/index.min.js"></script> ``` Mostly useful for tests. ## Usage ```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 ``` ## License Licensed under either of - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>) - MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>) ## Contribution Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


زبان مورد نیاز

مقدار نام
18.15.0 Npm


نحوه نصب


نصب پکیج tgz it-first-3.0.1:

    npm install it-first-3.0.1.tgz