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

coarse

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

coarse

convert an svg server-side with rough

  • 0.8.3
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

coarse

build status

convert an svg server-side with rough

A simple wrapper that converts SVGs server-side to a more rough version with rough.

Installation

$ npm install coarse

Example

So for example, to render an svg with rough:

const fs = require('fs');
const coarse = require('coarse');

const svg = fs.readFileSync('./input.svg');
const roughened = coarse(svg);

fs.writeFileSync('./output.svg', roughened);

API

coarse(input, [options]) ⇒ string

Convert an svg server-side with rough

Kind: global function Returns: string - The converted svg as a string

ParamTypeDefaultDescription
inputstringAn svg string to render with rough
[options]Object{}Global configuration options for rough

License

MIT

FAQs

Package last updated on 24 May 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc