
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
A Parser and Analysis of CSS Declaration.
npm install --save-dev css-fruit
import Fruit from 'css-fruit';
const background = Fruit.absorb('background', 'url(abc.png) #eee right top / 100% repeat-x');
CommonJS Code
const Fruit = require('css-fruit').default;
const background = Fruit.absorb('background', 'url(abc.png) #eee right top / 100% repeat-x');
Following is the structure of generated backgroud object:
background: Background {
valid: true,
color: #eee,
image: 'url(\'abc.png\')',
position: BackgroundPosition {
valid: true,
x: { origin: 'right', offset: undefined },
y: { origin: 'top', offset: undefined },
},
size: BackgroundSize {
valid: true,
width: '100%',
height: 'auto',
},
repeat: BackgroundRepeat {
valid: true,
x: 'repeat',
y: 'no-repeat',
},
attachment: undefined,
origin: undefined,
clip: undefined
}
Make sure props of declarations related to same shorthand.
import Fruit from 'css-fruit';
const background = Fruit
.absorb('background', 'url(abc.png) #eee repeat-x')
.absorb('background-size', '100%')
.absorb('background-position', 'top right');
An object like postcss decl struct is allowed:
import Fruit from 'css-fruit';
const background = Fruit
.absorb({ prop: 'background', value: 'url(abc.png) #eee repeat-x' })
.absorb({ prop: 'background-size', value: '100%' })
.absorb({ prop: 'background-position', value: 'top right' });
You can pass an Array also.
import Fruit from 'css-fruit';
const background = Fruit.absorb([
{ prop: 'background', value: 'url(abc.png) #eee repeat-x' },
{ prop: 'background-size', value: '100%' },
{ prop: 'background-position', value: 'top right' }
]);
If you want process CSS properties only about background in your project, it is better to import as required.
import { Background } from 'css-fruit';
const background = Background
.absorb('background', 'url(abc.png) #eee repeat-x')
.absorb('background-size', '100%')
.absorb('background-position', 'top right');
npm run build
npm run test
See Releases
FAQs
A Parser and Analysis of CSS Declaration
We found that css-fruit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.