insee-municipality-code
Version:
🇫🇷 Get the INSEE municipality code from postal code and name of French municipality
13 lines (8 loc) • 378 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _latinMap = require("../data/latinMap.json");
var _latinMap2 = _interopRequireDefault(_latinMap);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.default = string => string.replace(/[^A-Za-z0-9 .']/g, a => _latinMap2.default[a] || a);