Skip to content

Commit 7870a40

Browse files
committed
Merge pull request #10 from KPI-FICT-IP32/fix-7
[#7|fix] Fix wrapper behaviour
2 parents 9fc4e64 + 8491329 commit 7870a40

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interfaceWrapper/en/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ example:
6868
Array.prototype.push.apply(args, arguments);
6969
console.log('Call: ' + fnName);
7070
console.dir(args);
71-
fn.apply(undefined, args);
71+
return fn.apply(undefined, args);
7272
}
7373
}
7474
```

interfaceWrapper/ru/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
Array.prototype.push.apply(args, arguments);
6868
console.log('Call: ' + fnName);
6969
console.dir(args);
70-
fn.apply(undefined, args);
70+
return fn.apply(undefined, args);
7171
}
7272
}
7373
```

0 commit comments

Comments
 (0)