From abad8d18a30248da8951cac166da547e8e57aa72 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 27 Jul 2022 14:50:59 +0300 Subject: [PATCH] docs... Signed-off-by: Alex A. Naanou --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 4b39170..9b11c1b 100644 --- a/README.md +++ b/README.md @@ -80,6 +80,7 @@ Library of JavaScript type extensions, types and utilities. - [`.concat(..)`](#promise-iterconcat) - [`.push(..)` / `.unshift(..)`](#promise-iterpush--promise-iterunshift) - [`.at(..)` / `.first()` / `.last()`](#promise-iterat--promise-iterfirst--promise-iterlast) + - [`.join(..)`](#promise-iterjoin) - [`.some(..)` / `.find(..)`](#promise-itersome--promise-iterfind) - [Array proxy methods returning ``](#array-proxy-methods-returning-promise-iter) - [Array proxy methods returning a ``](#array-proxy-methods-returning-a-promise) @@ -104,6 +105,7 @@ Library of JavaScript type extensions, types and utilities. - [`.flat(..)`](#generatorflat) - [`.shift()` / `.pop()` / `.gshift()` / `.gpop()`](#generatorshift--generatorpop--generatorgshift--generatorgpop) - [`.unshift(..)` / `.push(..)`](#generatorunshift--generatorpush) + - [`.join(..)`](#generatorjoin) - [`.then(..)` / `.catch(..)` / `.finally(..)`](#generatorthen--generatorcatch--generatorfinally) - [`.toArray()`](#generatortoarray) - [Treating iterators the same as generators](#treating-iterators-the-same-as-generators) @@ -115,6 +117,7 @@ Library of JavaScript type extensions, types and utilities. - [`.slice(..)`](#generatorslice-1) - [`.map(..)` / `.filter(..)` / `.reduce(..)` / `.flat()`](#generatormap--generatorfilter--generatorreduce--generatorflat) - [`.toArray()`](#generatortoarray-1) + - [`.join(..)`](#generatorjoin-1) - [`.then(..)` / `.catch(..)` / `.finally(..)`](#generatorthen--generatorcatch--generatorfinally-1) - [Generator combinators](#generator-combinators) - [`.chain(..)` / `.chain(..)`](#generatorchain--generatorchain) @@ -1711,6 +1714,12 @@ parent ``. XXX + +#### `.join(..)` + +XXX + + #### `.some(..)` / `.find(..)` ```bnf @@ -2207,6 +2216,11 @@ Value added by `.unshift(..)` will be yielded by `` "first", i.e. on _next_ call to `.next()`, regardless of the current generator state. +#### `.join(..)` + +XXX + + #### `.then(..)` / `.catch(..)` / `.finally(..)` Return a promise and resolve it with the generator value. @@ -2410,6 +2424,10 @@ Return a function that will return a `` output as an `Array`. -> ``` +#### `.join(..)` + +XXX + #### `.then(..)` / `.catch(..)` / `.finally(..)`