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_perf.cc')
-rw-r--r--src/node_perf.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/node_perf.cc b/src/node_perf.cc
index 916a9974d5d..b5efc05689f 100644
--- a/src/node_perf.cc
+++ b/src/node_perf.cc
@@ -24,7 +24,6 @@ using v8::Isolate;
using v8::Local;
using v8::Map;
using v8::MaybeLocal;
-using v8::NewStringType;
using v8::Number;
using v8::Object;
using v8::PropertyAttribute;
@@ -60,16 +59,14 @@ inline void InitObject(const PerformanceEntry& entry, Local<Object> obj) {
obj->DefineOwnProperty(context,
env->name_string(),
String::NewFromUtf8(isolate,
- entry.name().c_str(),
- NewStringType::kNormal)
+ entry.name().c_str())
.ToLocalChecked(),
attr)
.Check();
obj->DefineOwnProperty(context,
env->entry_type_string(),
String::NewFromUtf8(isolate,
- entry.type().c_str(),
- NewStringType::kNormal)
+ entry.type().c_str())
.ToLocalChecked(),
attr)
.Check();