blob: b4319c052143fc642b8f827b9e8f6625c1af28fe [file] [log] [blame]
'use strict';
const rgbRegex = require('rgb-regex');
function isRGB(str) {
return rgbRegex({ exact: true }).test(str);
}
module.exports = isRGB;