@lonelyplanet/dotcom-core
Version:
This package is meant to house some of our more common UI and shared libs across dotcom applications.
18 lines (13 loc) • 464 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var diacritics = require("diacritics");
var lodash_1 = require("./lodash");
function replaceApostrophes(str) {
return str.replace(/[ʻʼ’‘`´]/g, "'");
}
exports.replaceApostrophes = replaceApostrophes;
var removeDiacritics = diacritics.remove;
var cleanQuery = lodash_1.default.flow([replaceApostrophes, removeDiacritics, encodeURIComponent]);
exports.default = cleanQuery;