UNPKG
@antv/dom-util
Version:
latest (2.0.4)
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
A common util collection for antv projects
github.com/antvis/util
antvis/util
@antv/dom-util
/
lib
/
modify-css.js
14 lines
•
355 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
function
modifyCSS
(
dom, css
) {
if
(dom) {
for
(
var
key
in
css) {
if
(css.
hasOwnProperty
(key)) { dom.
style
[key] = css[key]; } } }
return
dom; }
exports
.
default
= modifyCSS;
//# sourceMappingURL=modify-css.js.map