You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
459 B
17 lines
459 B
/*!
|
|
* hex-color-regex <https://github.com/regexps/hex-color-regex>
|
|
*
|
|
* Copyright (c) 2015 Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)
|
|
* Released under the MIT license.
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
module.exports = function hexColorRegex(opts) {
|
|
opts = opts && typeof opts === 'object' ? opts : {}
|
|
|
|
return opts.strict
|
|
? /^#([a-f0-9]{3,4}|[a-f0-9]{4}(?:[a-f0-9]{2}){1,2})\b$/i
|
|
: /#([a-f0-9]{3}|[a-f0-9]{4}(?:[a-f0-9]{2}){0,2})\b/gi
|
|
}
|