You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
215 B
16 lines
215 B
4 years ago
|
#include <node_api.h>
|
||
|
#include <napi-macros.h>
|
||
|
|
||
|
NAPI_METHOD(times_two) {
|
||
|
NAPI_ARGV(1)
|
||
|
NAPI_ARGV_INT32(number, 0)
|
||
|
|
||
|
number *= 2;
|
||
|
|
||
|
NAPI_RETURN_INT32(number)
|
||
|
}
|
||
|
|
||
|
NAPI_INIT() {
|
||
|
NAPI_EXPORT_FUNCTION(times_two)
|
||
|
}
|