# throttle

throttle 节流函数

# 代码演示

# Demo

import { throttle  } from 'm-utilsdk/index';

function sayLove(name) {
  return name;
}

throttle(sayLove, 200)('zhucc');