MCPcopy Create free account
hub / github.com/nodejs/node-addon-api / InitBigInt

Function InitBigInt

test/bigint.cc:79–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77} // anonymous namespace
78
79Object InitBigInt(Env env) {
80 Object exports = Object::New(env);
81 exports["IsLossless"] = Function::New(env, IsLossless);
82 exports["IsBigInt"] = Function::New(env, IsBigInt);
83 exports["TestInt64"] = Function::New(env, TestInt64);
84 exports["TestUint64"] = Function::New(env, TestUint64);
85 exports["TestWords"] = Function::New(env, TestWords);
86 exports["TestTooBigBigInt"] = Function::New(env, TestTooBigBigInt);
87
88 return exports;
89}
90
91#endif

Callers 1

InitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected