// Add a UID to a stringexportconstaddUID = s => {
let d = newDate();
s = s + "-" + d.getSeconds() + ":" + d.getMilliseconds();
return s;
};
// Remove UID from a stringexportconstremoveUID = s => {
return s.indexOf("-") > -1 ? s.split("-")[0] : s;
};