From ea7ae39024345987fb9264cf8c808fdbbe2bd532 Mon Sep 17 00:00:00 2001 From: Pavel Tiunov Date: Mon, 4 Sep 2017 16:21:20 +0300 Subject: [PATCH] Update rlink.cpp --- src/rlink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rlink.cpp b/src/rlink.cpp index 77bce9e..facddd2 100644 --- a/src/rlink.cpp +++ b/src/rlink.cpp @@ -64,7 +64,7 @@ void RWrap::parseEval(const Nan::FunctionCallbackInfo& info) { v8::String::Utf8Value param(info[0]->ToString()); std::string command = std::string(*param); std::string wrapper_before = "toJSON({"; - std::string wrapper_after = "}, digits = 50);"; + std::string wrapper_after = "});"; std::string full_command = wrapper_before + command + wrapper_after; Handle global = Nan::GetCurrentContext()->Global();