| 11 | } |
| 12 | |
| 13 | Object InitBufferNoExternal(Env env) { |
| 14 | Object exports = Object::New(env); |
| 15 | |
| 16 | exports["createOrCopyExternalBuffer"] = |
| 17 | Function::New(env, CreateOrCopyExternalBuffer); |
| 18 | exports["createOrCopyExternalBufferWithFinalize"] = |
| 19 | Function::New(env, CreateOrCopyExternalBufferWithFinalize); |
| 20 | exports["createOrCopyExternalBufferWithFinalizeHint"] = |
| 21 | Function::New(env, CreateOrCopyExternalBufferWithFinalizeHint); |
| 22 | |
| 23 | return exports; |
| 24 | } |