You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
430 B
22 lines
430 B
"use strict"; |
|
|
|
var nextTick = require("next-tick"); |
|
|
|
module.exports = function (t, a, d) { |
|
var wasInvoked = false, args = [{}, {}], context = {}; |
|
var target = t.call(function () { |
|
a(this, context); |
|
a.deep(arguments, args); |
|
wasInvoked = true; |
|
}); |
|
|
|
nextTick(function () { |
|
a(wasInvoked, false); |
|
target.apply(context, args); |
|
a(wasInvoked, false); |
|
nextTick(function () { |
|
a(wasInvoked, true); |
|
d(); |
|
}); |
|
}); |
|
};
|
|
|