kaguranana-birthday-project/node_modules/rgb-regex/index.js
2021-12-12 18:49:32 -08:00

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;
}