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
The following does not parse correctly
import { version as uuidVersion, validate as uuidValidate } from 'uuid';
The following has to be used instead
import { version as uuidVersion } from 'uuid'; import { validate as uuidValidate } from 'uuid';
The problem is here according to @ctavan cdeb284#diff-180b3d2af89416b99563fff8c37eb8ca1ef7591fc1ddd736b5dacf740ccd3760
The text was updated successfully, but these errors were encountered:
The problem back when I tried porting runmd to supporting ESM was that I wasn't sure how to implement the onRequire hack used in https://github.com/uuidjs/uuid/blame/master/README_js.md#L1
onRequire
Sorry, something went wrong.
No branches or pull requests
The following does not parse correctly
The following has to be used instead
The problem is here according to @ctavan
cdeb284#diff-180b3d2af89416b99563fff8c37eb8ca1ef7591fc1ddd736b5dacf740ccd3760
The text was updated successfully, but these errors were encountered: