UNPKG

uxcore-tinymce

Version:

uxcore-tinymce component for uxcore.

11 lines (9 loc) 248 B
let count = 0; module.exports = { uc_first: str => str.substring(0, 1).toUpperCase() + str.substring(1), uuid: () => { count += 1; return `uxcore-tinymce-${count}`; }, isEqual: (a, b) => JSON.stringify(a) === JSON.stringify(b), };