Skip to content
New issue

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

[bug] tokens.at is not a function #3546

Open
gorner opened this issue Nov 25, 2024 · 3 comments
Open

[bug] tokens.at is not a function #3546

gorner opened this issue Nov 25, 2024 · 3 comments
Labels

Comments

@gorner
Copy link

gorner commented Nov 25, 2024

Marked version:
15.0.2

Describe the bug
After upgrading from v14, our app started getting error reports with the following text:

t.at is not a function. (In 't.at(-1)', 't.at' is undefined)
Please report this to https://github.com/markedjs/marked.

... so I am doing as instructed 😛

The immediate stack trace reads:

assets/node_modules/marked/lib/marked.umd.js:1522:0:in `at'
                }
                if (this.state.top && (token = this.tokenizer.paragraph(cutSrc))) {
                    const lastToken = tokens.at(-1);
                    if (lastParagraphClipped && lastToken?.type === 'paragraph') {
                        lastToken.raw += '\n' + token.raw;

To Reproduce
Unclear as this only arose through our error logging. We ended up rolling back the marked upgrade, but if/when we find out more information about a specific reproduction path, we will update.

However our logging indicates this error only occurs on a limited range of older browser versions, including Safari 15.3 and earlier, and Chrome 125 and earlier, and it appears the .at() method is not supported on Safari before v15.4 (though supposedly it's supported in Chrome 92+ making the error there a bit more curious). It's not clear whether Marked still supports these versions as the readme currently only says "not IE11".

Expected behavior
The parsing works as expected / without error.

@gorner gorner changed the title tokens.at is not a function [bug] tokens.at is not a function Nov 25, 2024
@UziTech
Copy link
Member

UziTech commented Nov 25, 2024

We don't officially support any browsers but we support nodejs >=18 which I believe is es2022 so any browsers that support es2022 should work.

If you need support for older browsers using babel to transpile marked to your target browsers should work. If it doesn't, feel free to create an issue for that.

@gorner
Copy link
Author

gorner commented Nov 25, 2024

@UziTech Thanks for the reply. For the record we currently have safari > 14.1.2, chrome > 57 specified in our .browserslistrc (which should be used by Babel) so if this was something Babel would catch/transpile it should have done so. It doesn't appear Babel transpilation handles changes in syntax like this in and of itself, but we could set up a polyfill (with additional packages and config). Or we could just update our browser targets, or stay on v14 for now.

Ultimately it is of course your call whether to modernize syntax, and doing so in a major version bump as you did makes sense. I would just suggest updating the release notes and/or README to reflect this, as it is a breaking change.

@UziTech
Copy link
Member

UziTech commented Nov 25, 2024

I would just suggest updating the release notes and/or README to reflect this, as it is a breaking change.

If you would like to help list every possible things that can break between each breaking change, that would be very helpful😁👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants