colors.js 101 Bytes
Newer Older
Muddsair Sharif's avatar
Muddsair Sharif committed
1
2
3
4
5
export default function(s) {
  return s.match(/.{6}/g).map(function(x) {
    return "#" + x;
  });
}