If you are running into the following error with your node application
ReferenceError: FinalizationRegistry is not defined
Chances are that your current node version doesn’t have FinalizationRegistry
natively yet (e.g. if you are using Node 12).
You will then have to upgrade Node version to v14 or higher to have FinalizationRegistry
supported.
Top comments (0)