html2canvas icon indicating copy to clipboard operation
html2canvas copied to clipboard

fix: replace deprecated String.prototype.substr()

Open CommanderRoot opened this issue 3 years ago • 1 comments

Summary

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.

Test plan (required)

I tested the return of each statement to make sure it's the same as before

CommanderRoot avatar Apr 05 '22 15:04 CommanderRoot

Can be tested in @cantoo/html2canvas

Sharcoux avatar Aug 31 '23 02:08 Sharcoux