Files
hoppscotch/plugins/formatCountry.js
2021-07-06 18:00:38 +00:00

8 lines
173 B
JavaScript

import Vue from "vue"
Vue.filter("formatCountry", (countryCode) =>
String.fromCodePoint(
...[...countryCode.toUpperCase()].map((x) => 0x1f1a5 + x.charCodeAt())
)
)