
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.
@hookun/parse-animation-shorthand
Advanced tools
A parser for the value of CSS animation shorthand property.
A parser for The animation shorthand CSS property.
npm install @hookun/parse-animation-shorthand
string) → Array<CSSAnimation>import {parse} from '@hookun/parse-animation-shorthand';
const result = parse('3s ease-in SlideIn, .2s .1s ease FadeIn');
const expectedResult = [
{
name: 'SlideIn',
duration: 3000,
delay: 'unset',
timingFunction: 'ease-in',
iterationCount: 'unset',
direction: 'unset',
fillMode: 'unset',
playState: 'unset',
},
{
name: 'FadeIn',
duration: 200,
delay: 100,
timingFunction: 'ease',
iterationCount: 'unset',
direction: 'unset',
fillMode: 'forwards',
playState: 'unset',
},
];
CSSAnimation) → stringimport {serialize} from '@hookun/parse-animation-shorthand';
const result = serialize({
name: 'SlideIn',
duration: 3000,
delay: 'unset',
timingFunction: 'ease-in',
iterationCount: 'unset',
direction: 'unset',
fillMode: 'unset',
playState: 'unset',
});
const expectedResult = '3s ease-in SlideIn';
CSSAnimation?interface CSSAnimation {
name: string
duration: number | Unset
timingFunction: CSSTimingFunction | Unset
delay: number | Unset
iterationCount: number | 'infinite' | Unset
direction: CSSAnimationDirection | Unset
fillMode: CSSAnimationFillMode | Unset
playState: CSSAnimationPlayState | Unset
}
type Unset = 'unset'
type CSSTimingFunction =
| CSSTimingFunctionKeyword
| CSSCubicBezier
| CSSSteps
type CSSTimingFunctionKeyword =
| 'ease'
| 'ease-in'
| 'ease-out'
| 'ease-in-out'
| 'linear'
| 'step-start'
| 'step-end'
interface CSSCubicBezier {
type: 'cubic-bezier'
value: [number, number, number, number]
}
interface CSSSteps {
type: 'steps'
stepCount: number
direction: CSSStepDirection
}
type CSSStepDirection =
| 'jump-start'
| 'jump-end'
| 'jump-none'
| 'jump-both'
| 'start'
| 'end'
type CSSAnimationDirection =
| 'normal'
| 'reverse'
| 'alternate'
| 'alternate-reverse';
type CSSAnimationFillMode =
| 'none'
| 'forwards'
| 'backwards'
| 'both'
type CSSAnimationPlayState =
| 'paused'
| 'running'
FAQs
A parser for the value of CSS animation shorthand property.
The npm package @hookun/parse-animation-shorthand receives a total of 3,898 weekly downloads. As such, @hookun/parse-animation-shorthand popularity was classified as popular.
We found that @hookun/parse-animation-shorthand 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.