Robrecht Conjaerts

Results 7 comments of Robrecht Conjaerts

My apologies for the late reply, I have to change my notification settings properly. It's weird that you don't seem to have this issue. Our complete function that we're using...

Sure, I ran this with `ts-node` and after 10 product logs it failed. When I set the limit option higher than 10, it works. ``` import { Stripe } from...

Quick fix would also be to allow a higher `limit` value. Currently the maximum value is 100, but I can imagine that some of our clients might have more than...

This is an issue of papaparse, discussed here: https://github.com/mholt/PapaParse/issues/761

We have the same issue. The `stream` property supposedly does not exist on `WorkbookWriter`. If this was actually the case, the code would crash, which isn't the case, so I...

I'm having the same issue since updating to version `3.3.8`, this wasn't the case for version `3.1.14`.

The following works for me. ``` import Moment from "moment"; import { extendMoment } from "moment-range"; // @ts-expect-error - No proper typescript support from moment-range const moment = extendMoment(Moment); Array.from(...