chore(lint): cumulative lint fixes prep for eslint@7 (#7078)

This commit is contained in:
Tim Lai
2021-03-16 10:11:35 -07:00
committed by GitHub
parent d17a81e16a
commit 4d264ae17f
5 changed files with 7 additions and 9 deletions

View File

@@ -688,7 +688,7 @@ export const parseSearch = () => {
let params = search.substr(1).split("&")
for (let i in params) {
if (!params.hasOwnProperty(i)) {
if (!Object.prototype.hasOwnProperty.call(params, i)) {
continue
}
i = params[i].split("=")