mni 0.1.1

A world-class minifier for JavaScript, CSS, and JSON written in Rust
Documentation
1
2
3
4
5
6
7
8
// Bug test case: SWC produces invalid JavaScript
function updateToggleIcon(theme) {
  const toggleButton = document.getElementById('theme-toggle');
  if (!toggleButton) return;

  const icon = toggleButton.querySelector('#theme-icon') || toggleButton;
  icon.textContent = theme === 'dark' ? '☀️' : '🌙';
}