// Return an array of glyphs based on a UUIDv4
export const getGlyphHash = function (uuid) {
- const hashFragments = uuid.match(internals.kSplitterRegex);
+ const hashFragments = uuid.replace(/[-]/g,'').match(internals.kSplitterRegex);
return hashFragments.map(getGlyphHashFragment);
};