diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-26 15:07:11 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-11-26 17:18:17 -0500 |
commit | 7f9a73135da4244e779f32179c7d19e6984bbc55 (patch) | |
tree | 9ba137365174a89f7960634bbb4d1859ba0e86dd /ext/bg/js/util.js | |
parent | 0ebf6763051cc5e162efcca4846dd3ac7eae1e0e (diff) |
Remove utilAsync
Diffstat (limited to 'ext/bg/js/util.js')
-rw-r--r-- | ext/bg/js/util.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js index a6126677..b9e602b3 100644 --- a/ext/bg/js/util.js +++ b/ext/bg/js/util.js @@ -16,12 +16,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -function utilAsync(func) { - return function(...args) { - func.apply(this, args); - }; -} - function utilIsolate(data) { return JSON.parse(JSON.stringify(data)); } |