api-client/plugins/formatCountry.js

8 lines
173 B
JavaScript
Raw Normal View History

2021-07-02 05:01:29 +00:00
import Vue from "vue"
Vue.filter("formatCountry", (countryCode) =>
String.fromCodePoint(
...[...countryCode.toUpperCase()].map((x) => 0x1f1a5 + x.charCodeAt())
)
)