UNPKG

text-clamp

Version:

处理文字超出最大行数显示...

12 lines (10 loc) 246 B
const getConfig=require('./getConfig'); module.exports = function* (configs) { configs = getConfig(configs); let i = 0; const total = configs.length; while (i < total) { yield configs[i]; i++; } };