From 47a36d8bae825e467af69e133bb6e823a6a4669e Mon Sep 17 00:00:00 2001 From: Oj Date: Fri, 25 Mar 2022 22:58:56 +0000 Subject: [PATCH] [AutoStart > Stub] Minify arg names --- src/autoStart/stub.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/autoStart/stub.js b/src/autoStart/stub.js index 42f9545..69d4b90 100644 --- a/src/autoStart/stub.js +++ b/src/autoStart/stub.js @@ -1,5 +1,5 @@ // Stub (Darwin) -exports.install = (callback) => callback(); -exports.update = (callback) => callback(); -exports.uninstall = (callback) => callback(); -exports.isInstalled = (callback) => callback(false); \ No newline at end of file +exports.install = (c) => c(); +exports.update = (c) => c(); +exports.uninstall = (c) => c(); +exports.isInstalled = (c) => c(false); \ No newline at end of file