
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
parse-css-dimension
Advanced tools
Parse a CSS dimension (i.e., number, length, percentage) into a JavaScript object.
Parse a CSS dimension (i.e., <number>
, <length>
, <percentage>
, <angle>
, <resolution>
, <frequency>
, <time>
) into a JavaScript object.
$ npm install parse-css-dimension [--save[-dev]]
var parseCssDimension = require('parse-css-dimension');
parseCssDimension('-3.4e-2'); // { [Number: -0.034] type: 'number', value: -0.034 }
parseCssDimension('42em'); // { [Number: 42] type: 'length', value: 42, unit: 'em' }
parseCssDimension('42deg'); // { [Number: 42] type: 'angle', value: 42, unit: 'deg' }
parseCssDimension('42dpi'); // { [Number: 42] type: 'resolution', value: 42, unit: 'dpi' }
parseCssDimension('42Hz'); // { [Number: 42] type: 'frequency', value: 42, unit: 'Hz' }
parseCssDimension('42ms'); // { [Number: 42] type: 'time', value: 42, unit: 'ms' }
parseCssDimension('42%'); // { [Number: 42] type: 'percentage', value: 42 }
The result is an instance of CssDimension
, which allows you to stringify it
back into its original form via .toString()
or perform math calculations.
var result = parseCssDimension('42%');
result instanceof parseCssDimension.CssDimension; // true
result.toString(); // 42%
result + 3; // 45
$ npm test
This will run tests and generate a code coverage report. Anything less than 100% coverage will throw an error.
1.1.0
<angle>
, <resolution>
, <frequency>
and <time>
units (issue 1). Thanks @niksy
!FAQs
Parse a CSS dimension (i.e., number, length, percentage) into a JavaScript object.
The npm package parse-css-dimension receives a total of 1,758 weekly downloads. As such, parse-css-dimension popularity was classified as popular.
We found that parse-css-dimension 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
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.