UNPKG

@slan-health/taro-vueuse

Version:

taro vue版本hooks

12 lines (11 loc) 305 B
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