# debounce

debounce 防抖函数

# 代码演示

# Demo

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

function sayLove(name) {
  return name;
}

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