UNPKG

155 BJavaScriptView Raw
1"use strict";
2
3module.exports = function(str) {
4 var hex = String(str).match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);
5 return (hex) ? hex.slice(1) : null;
6};