UNPKG

414 BJavaScriptView Raw
1/**
2 @function stylize
3 @desc Applies each key/value in an object as a style.
4 @param {D3selection} elem The D3 element to apply the styles to.
5 @param {Object} styles An object of key/value style pairs.
6*/
7export default function (e) {
8 var s = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
9
10 for (var k in s) {
11 if ({}.hasOwnProperty.call(s, k)) e.style(k, s[k]);
12 }
13}
\No newline at end of file