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 82dd33b commit 4db670cCopy full SHA for 4db670c
packages/node-addon-examples/tests/buffers/addon.c
@@ -130,7 +130,6 @@ static void deleteTheText(
130
NODE_API_BASIC_ASSERT_RETURN_VOID(
131
data != NULL && strcmp(data, theText) == 0, "invalid data");
132
133
- printf("XDDDD");
134
(void)finalize_hint;
135
free(data);
136
deleterCallCount++;
@@ -158,7 +157,6 @@ static napi_value newBuffer(napi_env env, napi_callback_info info) {
158
157
}
159
160
static napi_value newExternalBuffer(napi_env env, napi_callback_info info) {
161
- printf("creating external buffer\n");
162
napi_value theBuffer;
163
char* theCopy = strdup(theText);
164
NODE_API_ASSERT(
0 commit comments