Kyle Tse

Results 105 comments of Kyle Tse

```ts import isPromise from 'is-promise' type AsPromise = T extends Promise ? T : Promise type MayBePromiseReturn = Extract extends never ? T : AsPromise type PromiseValue = T extends...

```ts export function $(fn: (value: T, ...args: Args) => R) { return (...args: Args) => { return (value: T) => { return fn(value, ...args) } } } export function take(collection:...

> @shtse8 thank you for sharing your pipe function, I love how simple it is! The `$` function is also great. I'd love to see a PR where I can...

> do you mind if i do it @shtse8 ? It would make me a PR for Hacktoberfest 😄 please do. 🚀🚀

will there be possible to support this in the future? adding an option to matching in case-insensitive mode. I might help if it is the direction.

any updates?

I need this feature too.

how is this now? are we going forward?

any progress on this? Thanks a lot.