@slan-health/taro-vueuse
Version:
taro vue版本hooks
12 lines (11 loc) • 305 B
JavaScript
import { createFilterWrapper, throttleFilter } from "../utils/index.js";
function useThrottleFn(fn, ms = 200, trailing = true, leading = true) {
return createFilterWrapper(
throttleFilter(ms, trailing, leading),
fn
);
}
export {
useThrottleFn as default
};
//# sourceMappingURL=index.js.map