Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_buffer.cc')
-rw-r--r--src/node_buffer.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/node_buffer.cc b/src/node_buffer.cc
index 39727fcdd14..9fed15622e0 100644
--- a/src/node_buffer.cc
+++ b/src/node_buffer.cc
@@ -234,6 +234,20 @@ size_t Length(Local<Object> obj) {
}
+inline MaybeLocal<Uint8Array> New(Environment* env,
+ Local<ArrayBuffer> ab,
+ size_t byte_offset,
+ size_t length) {
+ CHECK(!env->buffer_prototype_object().IsEmpty());
+ Local<Uint8Array> ui = Uint8Array::New(ab, byte_offset, length);
+ Maybe<bool> mb =
+ ui->SetPrototype(env->context(), env->buffer_prototype_object());
+ if (mb.IsNothing())
+ return MaybeLocal<Uint8Array>();
+ return ui;
+}
+
+
MaybeLocal<Object> New(Isolate* isolate,
Local<String> string,
enum encoding enc) {