Socket
Socket
Sign inDemoInstall

webskit-gradient-parser

Package Overview
Dependencies
0
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "webskit-gradient-parser",
"version": "1.0.3",
"version": "1.0.4",
"description": "Converts a CSS gradient String into Object/JSON",

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

@@ -1,2 +0,103 @@

# webskit-gradient-parser
Converts a CSS gradient String into Object/JSON
# WebsKit Gradient Parser
## About
Parse CSS3 gradient definition and returns `JSON` or `object`.
## Demo
[![Edit WebsKit Gradient Parser](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/gradient-parser-bexc5?fontsize=14&hidenavigation=1&theme=dark)
## Examples
```JavaScript
const gradient = require('webskit-gradient-parser');
const obj = gradient.parse('repeating-radial-gradient(ellipse 40px 134px at 50% 96%,rgb(0, 165, 223) 0%,rgb(62, 20, 123) 6.6%,rgb(226, 0, 121) 13.2%,rgb(223, 19, 44) 18.8%,rgb(243, 239, 21) 24.1%,rgb(0, 152, 71) 33.3%)', true);
console.log(JSON.stringify(obj, null, 2));
```
Results in:
```JSON
{
"type": "repeating-radial-gradient",
"stops": [
[
"rgb(0, 165, 223)",
"0%"
],
[
"rgb(62, 20, 123)",
"6.6%"
],
[
"rgb(226, 0, 121)",
"13.2%"
],
[
"rgb(223, 19, 44)",
"18.8%"
],
[
"rgb(243, 239, 21)",
"24.1%"
],
[
"rgb(0, 152, 71)",
"33.3%"
]
],
"gradientDefinition": "ellipse 40px 134px at 50% 96%",
"firstParameterIsColor": false,
"position": {
"x": "50%",
"y": "96%"
},
"linearAngle": 0,
"shape": "ellipse",
"size": [
"40px",
"134px"
],
"conicAngle": 0
}
```
## Install Choices
- `npm i webskit-gradient-parser`
## API
### gradient.parse
Accepts the gradient definitions as it is declared in `background-image` and returns an `JSON` or `object`.
### Options
By default the parser output a `JSON`, but passing `true` as second parameter we can get an `object`.
## License
(The MIT License)
Copyright (c) 2020 Juan Carlos Galindo Navarro ~ webskit.io
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc