scinote-web/app/javascript/vue/mixins/utils.js
2022-08-04 11:06:25 +02:00

22 lines
497 B
JavaScript

/* global ActiveStorage GLOBAL_CONSTANTS Promise i18n */
export default {
methods: {
stripHtml(html) {
let tmp = document.createElement("DIV");
tmp.innerHTML = html;
return tmp.textContent || tmp.innerText || "";
},
truncate(text, length) {
if (text.length > length) {
return text.substring(0, length) + '...';
}
return text;
},
numberWithSpaces(x) {
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, " ");
}
}
};