Skip to content

Commit de32809

Browse files
committed
removed console.log from fetch.js
1 parent e478de1 commit de32809

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.0+5
2+
3+
- Removed console.log from fetch.js
4+
15
# 0.4.0+4
26

37
- Fixed issue on xhr requests - wasn't passing headers to the requests

assets/js/fetch.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
function fetch(url, options) {
22
options = options || {};
3-
console.log('fetCH OPTIONS: '+ JSON.stringify(arguments));
43
return new Promise( (resolve, reject) => {
54
const request = new XMLHttpRequest();
65
const keys = [];

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ packages:
7575
path: ".."
7676
relative: true
7777
source: path
78-
version: "0.4.0+4"
78+
version: "0.4.0+5"
7979
flutter_test:
8080
dependency: "direct dev"
8181
description: flutter

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_js
22
description: A Javascript engine to use with flutter.
33
It uses Quickjs on Android and JavascriptCore on IOS
4-
version: 0.4.0+4
4+
version: 0.4.0+5
55
homepage: https://github.com/abner/flutter_js
66
repository: https://github.com/abner/flutter_js
77

0 commit comments

Comments
 (0)