peach a19a732be8 commit message | hace 2 años | |
---|---|---|
.. | ||
test | hace 2 años | |
.editorconfig | hace 2 años | |
.npmignore | hace 2 años | |
.travis.yml | hace 2 años | |
LICENSE.md | hace 2 años | |
README.md | hace 2 años | |
index.js | hace 2 años | |
package.json | hace 2 años |
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.