UNPKG

eslint-plugin-better-tailwindcss

Version:

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

7 lines 237 B
export function replacePlaceholders(template, match) { return template.replace(/\$(\d+)/g, (_, groupIndex) => { const index = Number(groupIndex); return match[index] ?? ""; }); } //# sourceMappingURL=string.js.map