2016-08-08 4 views

답변

1

function wrapper(callback) {//async callback is the standard for most libs func1(arg1);//call that original func1 you defined. callback(); //first arg is error, second is result (you don't have any result so it is empty) }

관련 문제