UglifyJS icon indicating copy to clipboard operation
UglifyJS copied to clipboard

chore: replace deprecated String.prototype.substr()

Open CommanderRoot opened this issue 3 years ago • 2 comments

This PR contains a:

  • [x] bugfix
  • [ ] new feature
  • [x] code refactor
  • [ ] test update
  • [ ] typo fix
  • [ ] metadata update

Motivation / Use-Case

String.prototype.substr() is deprecated so we replace it with String.prototype.slice() which works similarily but isn't deprecated. .substr() probably isn't going away anytime soon but the change is trivial so it doesn't hurt to do it.

Breaking Changes

None

CommanderRoot avatar Mar 18 '22 00:03 CommanderRoot

This doesn't seem to be fixing any bugs − unless you can demonstrate with a test case that fails before and passes after this PR.

Thanks for taking the time, although as you stated these whimsical deprecations never results in any removal (see __proto__) so I don't see the need, unless this gives measureable performance boost on some platforms (without regression in others).

alexlamsl avatar Mar 20 '22 11:03 alexlamsl

It removes a deprecation warning in the IDE. But you're right, unless the function gets removed by browsers or other software which uses this code there is nothing broken. As for performance, I have not tested it directly but from looking at other repos it's basically the same.

CommanderRoot avatar Mar 20 '22 11:03 CommanderRoot