We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1fe740 commit e897de5Copy full SHA for e897de5
class/ReactNativeBlobUtilSession.js
@@ -39,7 +39,7 @@ export default class ReactNativeBlobUtilSession {
39
40
remove(path:string):ReactNativeBlobUtilSession {
41
let list = sessions[this.name];
42
- for (let i of list) {
+ for (let i = 0; i < list.length; i++) {
43
if (list[i] === path) {
44
sessions[this.name].splice(i, 1);
45
break;
0 commit comments