UNPKG
text-clamp
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
处理文字超出最大行数显示...
github.com/penyuying/text-clamp
penyuying/text-clamp
text-clamp
/
build
/
utils
/
generateConfig.js
12 lines
(10 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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++; } };