equinox-web-components
Version:
Equinox design for the web using StencilJS
23 lines (20 loc) • 541 B
JavaScript
;
const getAbbr = (str) => {
if (str) {
return str.split(' ').length >= 2 ? str.match(/\b(\w)/g).join('') : str.substr(0, 2);
}
else {
return "";
}
};
const deserializeJSON = (json, component = 'unknown') => {
try {
json = json.split(""").join("\"");
return JSON.parse(json);
}
catch (e) {
alert(`Error while trying to parse JSON in ${component} component`);
}
};
exports.deserializeJSON = deserializeJSON;
exports.getAbbr = getAbbr;