Socket
Socket
Sign inDemoInstall

webskit-gradient-parser

Package Overview
Dependencies
1
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    webskit-gradient-parser

Converts a CSS gradient String into Object/JSON


Version published
Weekly downloads
249
decreased by-5.68%
Maintainers
1
Install size
5.26 MB
Created
Weekly downloads
 

Readme

Source

NPM version NPM license Build Status dependencies Status Node.js CI

WebsKit Gradient Parser

npm

About

Parse CSS3 gradient definition and returns JSON or object.

Demo

Edit WebsKit Gradient Parser

Examples

  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:

{
  "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.

Keywords

FAQs

Last updated on 21 Mar 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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