Revert for now

This commit is contained in:
Jiiks 2018-02-02 14:55:57 +02:00
parent 415d196954
commit cd87bd0e35
1 changed files with 3 additions and 4 deletions

View File

@ -16,12 +16,11 @@ const
import { Vendor } from 'modules';
export class Utils {
static overload(fn, cb, p) {
static overload(fn, cb) {
const orig = fn;
return function (...args) {
orig.call(p, ...args);
// cb.apply(...args);
// cb(...args);
orig(...args);
cb(...args);
}
}