From 21f541b309510994a662bdb6769817a3e6e34852 Mon Sep 17 00:00:00 2001 From: william Date: Sat, 30 Jan 2016 23:46:53 -0500 Subject: [PATCH] generic --- lxc.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lxc.js b/lxc.js index 7463214..91a9527 100644 --- a/lxc.js +++ b/lxc.js @@ -99,7 +99,9 @@ var lxc = { info.push(mapOut); } - callback.apply(this, [info].slice.call(arguments).splice(1,1)); + var args = [info].slice.call(arguments).splice(1,1); + console.log('args:', args) + callback.apply(this, args); }); } };