mirror of
https://github.com/litruv/unhomoglyph.git
synced 2026-07-24 02:36:12 +10:00
21 lines
379 B
JavaScript
21 lines
379 B
JavaScript
'use strict';
|
|
|
|
|
|
var data = require('./data.json');
|
|
|
|
function escapeRegexp(str) {
|
|
return str.replace(/([.?*+^$[\]\\(){}|-])/g, '\\$1');
|
|
}
|
|
|
|
var REPLACE_RE = RegExp(Object.keys(data).map(escapeRegexp).join('|'), 'g');
|
|
|
|
function replace_fn(match) {
|
|
return data[match];
|
|
}
|
|
|
|
function unhomoglyph(str) {
|
|
return str.replace(REPLACE_RE, replace_fn);
|
|
}
|
|
|
|
module.exports = unhomoglyph;
|