UNPKG

eslint-plugin-better-tailwindcss

Version:

auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.

9 lines 318 B
export function escapeNestedQuotes(content, surroundingQuotes) { const regex = surroundingQuotes === "'" ? /(?<!\\)'/g : surroundingQuotes === "\"" ? /(?<!\\)"/g : /(?<!\\)`/g; return content.replace(regex, `\\${surroundingQuotes}`); } //# sourceMappingURL=quotes.js.map