Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
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.
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.