Jesse Luoto

Results 177 comments of Jesse Luoto

## Workaround I implemented a workaround for this issue: Use another library to pre-parse the lines as a stream. I'm using [`delimiter-stream` NPM package](https://www.npmjs.com/package/delimiter-stream) that seems to have a correct...

Hey @pokoli > It will be great if you can provide a PR that adds a test case for this issue and fixes it. I'll have to see if I...

@nichgalea if you don't mind the extra memory usage, I believe you can call [`.text()`](https://developer.mozilla.org/en-US/docs/Web/API/Blob/text) on the file and pass the it to Papa parse as string. So something like:...

Hey, thank you for opening the issue! Do you have any specifics on how old Chromium you're supporting? This project uses Babel, which I think can be configured to support...

ga-lite probably does not work with the v4, but it's not tested yet. ga-lite uses the [Measurement Protocol](https://developers.google.com/analytics/devguides/collection/protocol/v1/) API, which seems to have a [new version 4 in alpha at...

Ok, just checked the new API and it seems to be a lot different from the current one that ga-lite is using. I'm tagging this as out of scope for...

`ga4-lite` sounds great! I'll definitely link to it from ga-lite if you'd create such a project

The ESM build was just recently added in #458 Would @kidonng have an idea why this is happening?

@hoangvvo how are you using ga-lite? I tried a quick example with CodeSandbox and I could not reproduce your issue: ```html import galite from "https://unpkg.com/[email protected]/dist/ga-lite.esm.js"; galite("create", "UA-XXXXXXXX-X", "auto"); console.log(galite); ```...

Thank you for opening the issue. Good catch on the ` ul` parameter! This should now be fixeed with #462 Using a custom endpoint would make sense — it would...