metarhia / metautil

Metarhia utilities 🧰
https://metarhia.com
MIT License
100 stars 25 forks source link

Support .then.then.then chaining in Collector #216

Closed tshemsedinov closed 11 months ago

tshemsedinov commented 11 months ago

Now we support only Thenable (Promise-like but without chaining)

const ac = collect(['userName', 'fileName']);
ac.then((data) => {
  console.log({ data });
  return { wrap: data };
}).then((data) => {
  console.log({ data });
});
zoff4ick commented 11 months ago

@tshemsedinov Зробив як обговорювали вчора на колі - просто через повернення промісу з .then. Перегляньте будь-ласка.

https://github.com/metarhia/metautil/pull/224