peach a19a732be8 commit message | 2 年之前 | |
---|---|---|
.. | ||
test | 2 年之前 | |
.editorconfig | 2 年之前 | |
.npmignore | 2 年之前 | |
.travis.yml | 2 年之前 | |
LICENSE.md | 2 年之前 | |
README.md | 2 年之前 | |
index.js | 2 年之前 | |
package.json | 2 年之前 |
Regex for RGB color strings.
npm install --save rgb-regex
var rgbRegex = require('rgb-regex');
rgbRegex({ exact: true }).test('rgb(12, 34, 56)'); // => true
rgbRegex({ exact: true }).test('unicorns'); // -> false
rgbRegex({ exact: true }).test('rgb(,,)'); // => false
rgbRegex().exec('rgb(12, 34, 56)');
// => [
// '12',
// '34',
// '56',
// index: 0,
// input: 'rgb(12,34,56)'
// ]
'rgb(12, 34, 56) cats and dogs'.match(rgbRegex());
// = ['rgb(12, 34, 56)']
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.