From 614b572a6b664db7ff9eb68846bf7c6760ac786b Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Wed, 2 Mar 2022 03:55:24 +0900 Subject: [PATCH] Update adb.js --- lib/adb.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/adb.js b/lib/adb.js index 27ac59a..a7658f3 100644 --- a/lib/adb.js +++ b/lib/adb.js @@ -45,10 +45,10 @@ function ADBObject() { }; } -exports.VERSIONINFO = "Android Debug Bridge Interface (adb.js) version 0.1"; -exports.global = global; -exports.require = global.require; - exports.create = function() { return new ADBObject(); }; + +exports.VERSIONINFO = "Android Debug Bridge Interface (adb.js) version 0.1"; +exports.global = global; +exports.require = global.require;