UNPKG

215 Btext/x-cView Raw
1#include <node_api.h>
2#include <napi-macros.h>
3
4NAPI_METHOD(times_two) {
5 NAPI_ARGV(1)
6 NAPI_ARGV_INT32(number, 0)
7
8 number *= 2;
9
10 NAPI_RETURN_INT32(number)
11}
12
13NAPI_INIT() {
14 NAPI_EXPORT_FUNCTION(times_two)
15}