UNPKG

@concordance/react

Version:

Compare, format, diff and serialize React trees with Concordance

11 lines (9 loc) 239 B
'use strict' function escapeText (text) { return text .replace(/</g, '&lt;') .replace(/>/g, '&gt;') // TODO: Escape characters that Concordance would otherwise replace with \u // sequences. } module.exports = escapeText