Skip to content

Commit 334e573

Browse files
committed
organize require statementsC
1 parent 7d44d78 commit 334e573

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/native.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
//require the c++ bindings & export to javascript
22
var sys = require('sys');
33
var EventEmitter = require('events').EventEmitter;
4+
var utils = require(__dirname + "/utils");
45

6+
var Connection = binding.Connection;
57
var binding = require(__dirname + '/../build/default/binding');
6-
var utils = require(__dirname + "/utils");
78
var types = require(__dirname + "/types");
8-
var Connection = binding.Connection;
9+
910
var p = Connection.prototype;
1011

1112
var nativeConnect = p.connect;

0 commit comments

Comments
 (0)