toStyle icon indicating copy to clipboard operation
toStyle copied to clipboard

Converts style objects to strings

Results 4 toStyle issues
Sort by recently updated
recently updated
newest added

```javascript var toObject = function(str){ str = (str || '').split(';') var result = {} str.forEach(function(item){ var split = item.split(':') if (split.length == 2){ result[split[0].trim()] = split[1].trim() } }) return result...

``` import {toStyleString, toStyleObject} from 'to-style'; ```

Expected: "flex-shrink: 0"; Result: "flex-shrink: 0px";