mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
16 lines
297 B
XML
16 lines
297 B
XML
/* eslint-disable */
|
|
var object = require('./object.wxs');
|
|
|
|
function style(styles) {
|
|
return object.keys(styles)
|
|
.filter(function (key) {
|
|
return styles[key];
|
|
})
|
|
.map(function (key) {
|
|
return [key, [styles[key]]].join(':');
|
|
})
|
|
.join(';');
|
|
}
|
|
|
|
module.exports = style;
|