UNPKG

create-lbgcli1

Version:

前端脚手架模板

9 lines (8 loc) 221 B
// Returns a function that will only be executed on and after the Nth call. export default function after(times, func) { return function() { if (--times < 1) { return func.apply(this, arguments); } }; }