Appearance
debounce(fun, wait)
1.0.3
func
[wait=0]
(Function): 返回新的 debounced(防抖动)函数。
// 避免窗口在变动时出现昂贵的计算开销。 jQuery(window).on('resize', _.debounce(calculateLayout, 150));