refactor: replace deprecated String.prototype.substr() (#735)

.substr() is deprecated so we replace it with .slice() which works similarily but isn't deprecated

Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
This commit is contained in:
CommanderRoot 2022-03-23 21:06:37 +01:00 committed by GitHub
parent 180540facb
commit 480543e861
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -69,8 +69,8 @@ class App extends Component<*> {
*/
_listenOnProtocolMessages(event, inputURL: string) {
// Remove trailing slash if one exists.
if (inputURL.substr(-1) === '/') {
inputURL = inputURL.substr(0, inputURL.length - 1); // eslint-disable-line no-param-reassign
if (inputURL.slice(-1) === '/') {
inputURL = inputURL.slice(0, -1); // eslint-disable-line no-param-reassign
}
const conference = createConferenceObjectFromURL(inputURL);

View file

@ -162,7 +162,7 @@ class Welcome extends Component<Props, State> {
*/
_animateRoomnameChanging(word: string) {
let animateTimeoutId;
const roomPlaceholder = this.state.roomPlaceholder + word.substr(0, 1);
const roomPlaceholder = this.state.roomPlaceholder + word.slice(0, 1);
if (word.length > 1) {
animateTimeoutId