mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00: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;
|
|
}
|