mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-11 18:59:51 +08:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
module.exports = function rgbRegex(options) {
|
||
|
|
options = options || {};
|
||
|
|
|
||
|
|
return options.exact ?
|
||
|
|
/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/ :
|
||
|
|
/rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)/ig;
|
||
|
|
}
|