New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

stylis-atomic

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylis-atomic

stylis plugin to create atomic css

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

atomics

stylis plugin to create atomic css by taking an input such as

a {
	color:red;
}

b {
	color:red;
	display:block;
}

c {
	color:red;
	display: block;
}

d {
	color:red;
	display:block;
}

and converting it to

a,b,c,d{color:red}b,c,d{display:block}

since properties are shared between rules atomicly the compression scales with the number of unique properties used.

Keywords

stylis

FAQs

Package last updated on 12 Jun 2017

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