FLUJOS/BACK_BACK/node_modules/rgb-regex/index.js
2025-11-07 00:06:12 +01:00

9 lines
221 B
JavaScript
Executable file

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