UNPKG

react-ionicons

Version:

A React SVG ionicon component

20 lines (15 loc) 565 B
'use strict'; exports.__esModule = true; var chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''); var charsLength = chars.length; /* Some high number, usually 9-digit base-10. Map it to base-😎 */ var generateAlphabeticName = function generateAlphabeticName(code) { var name = ''; var x = void 0; for (x = code; x > charsLength; x = Math.floor(x / charsLength)) { name = chars[x % charsLength] + name; } return chars[x % charsLength] + name; }; exports.default = generateAlphabeticName; module.exports = exports['default'];