We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f57746 commit 5464927Copy full SHA for 5464927
website/docs/getting-started/migration.md
@@ -114,9 +114,9 @@ Node-API uses a different technique for defining the `exports` object.
114
The code:
115
116
```cpp
117
-Napi::Export(target, "now", Now);
118
-Napi::Export(target, "nowDouble", NowDouble);
119
-Napi::Export(target, "nowStruct", NowStruct);
+Nan::Export(target, "now", Now);
+Nan::Export(target, "nowDouble", NowDouble);
+Nan::Export(target, "nowStruct", NowStruct);
120
```
121
122
Needs to be replaced with:
0 commit comments