in js/src/lib/getCharacterWeight.js [5:20]
const getCharacterWeight = function(ch, options) {
const { defaultWeight, ranges } = options;
let weight = defaultWeight;
const chCodePoint = ch.charCodeAt(0);
if (Array.isArray(ranges)) {
for (let i = 0, length = ranges.length; i < length; i++) {
const currRange = ranges[i];
if (chCodePoint >= currRange.start && chCodePoint <= currRange.end) {
weight = currRange.weight;
break;
}
}
}
return weight;
};