blob: 4579483053c7300c05550610cdc4e404e57b349c [file] [log] [blame]
'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;
}