We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have no idea why, but Turf.js's jsDoc comments have multiple initial spaces after the initial /**:
/** * Earth Radius used with the Harvesine formula and approximates using a spherical (non-ellipsoid) Earth. * * @memberof helpers * @type {number} */
This causes cleanup({ comments: 'none' }), to not remove them.
cleanup({ comments: 'none' }),
Is there a reasonable way for cleanup() to handle this?
Or could you post a regex that just might work? I tried it but my regex fu is lacking! :)
The text was updated successfully, but these errors were encountered:
Oh, forgot: I get the Turf modules from unpkg using the urlResolve plugin, like this:
https://unpkg.com/@turf/[email protected]/dist/es/index.js?module https://unpkg.com/@turf/boolean-point-in-polygon?module ...and so on
Sorry, something went wrong.
Note: I just did the same thing with skypack and it apparently did not have the odd format, so cleanup worked like a charm!
No branches or pull requests
I have no idea why, but Turf.js's jsDoc comments have multiple initial spaces after the initial /**:
This causes
cleanup({ comments: 'none' }),
to not remove them.Is there a reasonable way for cleanup() to handle this?
Or could you post a regex that just might work? I tried it but my regex fu is lacking! :)
The text was updated successfully, but these errors were encountered: