UNPKG

vue-commercetools

Version:

Collection of filters and utilities for the fast development of ecommerce sites with Commercetools and Vue.js

7 lines (6 loc) 185 B
/** * Get string form LocalizedString */ export default function (value, lang = 'en') { return typeof value === 'object' && typeof value[lang] === 'string' ? value[lang] : value; }