aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/glyph_hash.js25
1 files changed, 4 insertions, 21 deletions
diff --git a/src/utils/glyph_hash.js b/src/utils/glyph_hash.js
index cbbf988..13a81a8 100644
--- a/src/utils/glyph_hash.js
+++ b/src/utils/glyph_hash.js
@@ -1,38 +1,21 @@
const internals = {
kSplitterRegex: /.{1,8}/g,
- kGlyphs: [
- '☽',
- '☆',
- '♢',
- '♡',
- '╱',
- '╲',
- '╳',
- '〰',
- '▷',
- '⏊',
- '〒',
- '▢',
- '◯',
- '⏃',
- '⏀',
- '⏆'
- ]
+ kGlyphs: ['☽', '☆', '♢', '♡', '╱', '╲', '╳', '〰', '▷', '⏊', '〒', '▢', '◯', '⏃', '⏀', '⏆']
};
// Return a glyph with color based on a 4 byte fragment of a UUIDv4
const getGlyphHashFragment = function (uuidFragment) {
- const glyphIndex = parseInt(uuidFragment.substring(0,2), 16) % 16;
+ const glyphIndex = parseInt(uuidFragment.substring(0, 2), 16) % 16;
return {
glyph: internals.kGlyphs[glyphIndex],
- color: `#${uuidFragment.substring(2,8)}`
+ color: `#${uuidFragment.substring(2, 8)}`
};
};
// Return an array of glyphs based on a UUIDv4
export const getGlyphHash = function (uuid) {
- const hashFragments = uuid.replace(/[-]/g,'').match(internals.kSplitterRegex);
+ const hashFragments = uuid.replace(/[-]/g, '').match(internals.kSplitterRegex);
return hashFragments.map(getGlyphHashFragment);
};