You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314151617 |
- const Utils = {
- parseStyle: function(style){
- let result = {};
-
- for(var key in style){
- if(style[key].sub){
- result[key] = this.parseStyle(style[key].sub);
- }else{
- result[key] = style[key].defaultValue;
- }
- }
-
- return result;
- }
- }
-
- export default Utils;
|