mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-25 20:55:17 +00:00
Merge pull request #380 from VueTubeApp/deepsource-fix-35385887
Removes the `new` keyword from the `String`, `Number`, `Boolean` objects
This commit is contained in:
commit
53082239e5
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ export default {
|
|||
//--- Update Stored Language Value ---//
|
||||
selectedLang: function (newVal) {
|
||||
const langs = this.$lang(null, true);
|
||||
let lang = new String();
|
||||
let lang = String();
|
||||
for (const i in langs) {
|
||||
if (langs[i].name == newVal) {
|
||||
lang = i;
|
||||
|
|
Loading…
Reference in a new issue