10 lines
170 B
JavaScript
Raw Normal View History

2025-04-23 09:34:08 +08:00
define(['./_bindCb', './_setup'], function (_bindCb, _setup) {
function unmethodize(method) {
return _bindCb(_setup.call, method);
}
return unmethodize;
});