hsla-regex
Advanced tools
Weekly downloads
Readme
Regex for matching HSLA colors.
npm install --save hsla-regex
var hslaRegex = require('hsla-regex');
hslaRegex({ exact: true }).test('hsla(123, 45%, 67%, .8)'); // => true
hslaRegex({ exact: true }).test('foo bar'); // => false
hslaRegex({ exact: true }).exec('hsla(1, 1.111%, 1.1111%, .8)');
// => [
// 'hsla(1, 1.111%, 1.1111%, .8)',
// '1',
// '1.111%',
// '1.1111%',
// '.8'
// index: 0,
// input: 'hsla(1, 1.111%, 1.1111%, .8)'
// ]
'hsla(123, 45%, 67%, .8) cats and dogs'.match(hslaRegex());
// = ['hsla(123, 45%, 67%, .8)']
MIT
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Crafted with <3 by John Otander (@4lpine).
This package was initially generated with yeoman and the p generator.
FAQs
Regex for matching HSLA colors.
The npm package hsla-regex receives a total of 3,051,667 weekly downloads. As such, hsla-regex popularity was classified as popular.
We found that hsla-regex 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 installs a GitHub app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.