import MagicString from 'https://esm.sh/magic-string';
const s = new MagicString('problems = 99');
s.remove(-1, 5);
Uncaught Error: end must be greater than start
Lead me on a bit of a wild goose chase before I realized the issue was with the start position, not that the end was somehow less than the start.
Lead me on a bit of a wild goose chase before I realized the issue was with the start position, not that the end was somehow less than the start.