We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1fe740 + e897de5 commit 79a9bb6Copy full SHA for 79a9bb6
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