Created
April 16, 2017 18:00
-
-
Save theharveyz/e8d21758d27d2ba4d2f013179a280a6f to your computer and use it in GitHub Desktop.
Revisions
-
theharveyz created this gist
Apr 16, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ const func = func = (...args) => {func.info(...args)}; func.info = (...args) => {console.info.apply(this, args)}; // test func(1,2,3,4); // out put: // ø 1 2 3