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
Hello there,
I am using your library inside a TypeScript project.
When importing and using the HumanInput class like the following...
import HumanInput from 'humaninput/src/humaninput-full.js' ... new HumanInput(window)
...this error is thrown: Uncaught ReferenceError: __VERSION__ is not defined
Uncaught ReferenceError: __VERSION__ is not defined
The problem is that there is global __VERSION__ required at:
__VERSION__
HumanInput/src/humaninput.js
Line 99 in b96967b
A hacky hotfix for me was to set the global after the import like this:
import HumanInput from 'humaninput/src/humaninput-full.js' eval( 'window.__VERSION__ = 0' ) ... new HumanInput(window)
The text was updated successfully, but these errors were encountered:
is this project abandoned?
Sorry, something went wrong.
It is...
No branches or pull requests
Hello there,
I am using your library inside a TypeScript project.
When importing and using the HumanInput class like the following...
...this error is thrown:
Uncaught ReferenceError: __VERSION__ is not defined
The problem is that there is global
__VERSION__
required at:HumanInput/src/humaninput.js
Line 99 in b96967b
A hacky hotfix for me was to set the global after the import like this:
The text was updated successfully, but these errors were encountered: