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

Issue with global Inputmask.prototype reference (easy fix) #2544

Closed
antch opened this issue Sep 2, 2021 · 2 comments
Closed

Issue with global Inputmask.prototype reference (easy fix) #2544

antch opened this issue Sep 2, 2021 · 2 comments

Comments

@antch
Copy link

antch commented Sep 2, 2021

Description: Using inputmask in certain build environments can cause a JavaScript error when calling mask():

core.js:4352 ERROR TypeError: Inputmask.prototype.analyseMask is not a function
    at generateMask (mask-lexer.js:40)
    at generateMaskSet (mask-lexer.js:91)
    at inputmask.js:87
    at Array.forEach (<anonymous>)
    at Inputmask.mask (inputmask.js:84)

Reproduction: I don't have one, but hopefully the issue is apparent. This is occurring when using Inputmask from an Angular Custom Element that imports via ES6 import.

Browser: Chrome 92
Inputmask version: 5.0.6

Analysis:

I troubleshot this issue for awhile, and only after I changed my import to node_modules/inputmask/bundle did I see the more helpful stack trace above. This is happening because Inputmask is exported to window in inputmask.js, but is not imported in mask-lexer.js which means that the Inputmask.prototype being imported is the one from window.Inputmask -- this does not have an analyseMask function in my environment.

Fix:
By explicitly importing in mask-lexer.js, the error goes away:

import Inputmask from './inputmask';
@antch antch changed the title Issues with Inputmask.prototype enhancement on global reference Issues with Inputmask.prototype enhancement on global reference (easy fix) Sep 2, 2021
@antch antch changed the title Issues with Inputmask.prototype enhancement on global reference (easy fix) Issue with global Inputmask.prototype reference (easy fix) Sep 2, 2021
@RobinHerbots
Copy link
Owner

@antch ,

Thx for the issue! I will submit a patch asap.

@antch
Copy link
Author

antch commented Sep 2, 2021

Thank you for getting to this so quickly. Just FYI, I also ran into #2285 and this import fixes that as well, at least for me.

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

No branches or pull requests

2 participants