Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-style-object-to-css

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-style-object-to-css - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

2

package.json
{
"name": "react-style-object-to-css",
"version": "1.0.0",
"version": "1.1.0",
"description": "Convert react style with object to inline css(string).",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1,2 +0,14 @@

# react-style-object-to-css
# Summary
Convert React style with object to pure inline css (string).
# Example
```js
const reactToCSS = require('./index.js')
const styleObj = {
backgroundColor: 'blue',
fontSize: 14
}
// result === "background-color: blue; font-size: 14px;"
const result = reactToCSS(styleObj)
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc