| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 142a92f commit da457a5
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -114,7 +114,7 @@ void TTYWrap::GetWindowSize(const FunctionCallbackInfo<Value>& args) { | |||
| 114 | 114 | int err = uv_tty_get_winsize(&wrap->handle_, &width, &height); | |
| 115 | 115 | ||
| 116 | 116 | if (err == 0) { | |
| 117 | - Local<v8::Array> a = args[0].As<Array>(); | ||
| 117 | + Local<Array> a = args[0].As<Array>(); | ||
| 118 | 118 | a->Set(env->context(), 0, Integer::New(env->isolate(), width)).FromJust(); | |
| 119 | 119 | a->Set(env->context(), 1, Integer::New(env->isolate(), height)).FromJust(); | |
| 120 | 120 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments