is-implemented.js 186 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 "use strict"; var str = "æøåäüö"; module.exports = function () { if (typeof str.normalize !== "function") return false; return str.normalize("NFKD") === "æøåäüö"; };