* First pass (working) collection export to zip * Add export confirmation screen * 👕 * Refactor * Job for team export, move to tmp file, settings UI * Export all collections job * 👕 * Add specs * Clarify UI
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
// @flow
|
|
|
|
const unescape = (text: string) => {
|
|
return text.replace(/\\([\\`*{}[\]()#+\-.!_>])/g, '$1');
|
|
};
|
|
|
|
export default unescape;
|