mirror of https://github.com/nodejs/node.git
typed arrays: don't declare as module
TypedArrays is not a module, it is attached to the global object. Don't register it with Node's module system.pull/24504/head
parent
b50d51ef5b
commit
3f75454426
|
@ -22,7 +22,6 @@
|
|||
|
||||
NODE_EXT_LIST_START
|
||||
NODE_EXT_LIST_ITEM(node_buffer)
|
||||
NODE_EXT_LIST_ITEM(node_typed_array)
|
||||
#if HAVE_OPENSSL
|
||||
NODE_EXT_LIST_ITEM(node_crypto)
|
||||
#endif
|
||||
|
|
|
@ -861,5 +861,3 @@ int SizeOfArrayElementForType(v8::ExternalArrayType type) {
|
|||
}
|
||||
|
||||
} // namespace v8_typed_array
|
||||
|
||||
NODE_MODULE(node_typed_array, v8_typed_array::AttachBindings)
|
||||
|
|
Loading…
Reference in New Issue