sugar-language
Version:
Language module for the Sugar Javascript utility library.
13 lines (11 loc) • 364 B
JavaScript
'use strict';
var WIDTH_CONVERSION_RANGES = [
{ type: 'a', start: 65, end: 90 },
{ type: 'a', start: 97, end: 122 },
{ type: 'n', start: 48, end: 57 },
{ type: 'p', start: 33, end: 47 },
{ type: 'p', start: 58, end: 64 },
{ type: 'p', start: 91, end: 96 },
{ type: 'p', start: 123, end: 126 }
];
module.exports = WIDTH_CONVERSION_RANGES;