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

font-family-papandreou

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

font-family-papandreou

CSS font-family parser/stringifier


Version published
Weekly downloads
7.6K
decreased by-59.21%
Maintainers
1
Weekly downloads
 
Created

font-family Build Status

CSS font-family parser/stringifier.

Installation

npm install font-family

Example

var parse = require('font-family').parse;

parse('"Helvetica Neue", Helvetica, sans-serif');
// => [ 'Helvetica Neue', 'Helvetica', 'sans-serif' ]
var stringify = require('font-family').stringify;

stringify(['Helvetica Neue', 'Helvetica', 'sans-serif']);
// => '"Helvetica Neue", Helvetica, sans-serif'

License

MIT

FAQs

Package last updated on 13 Sep 2020

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