mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 08:25:14 +00:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
'use strict';
|
|
|
|
module.exports = function rgbaRegex(options) {
|
|
options = options || {};
|
|
|
|
return options.exact ?
|
|
/^rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*(\d*(?:\.\d+)?)\)$/ :
|
|
/rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*(\d*(?:\.\d+)?)\)/ig;
|
|
}
|