vanilla-jet 1.1.9 → 1.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -76,7 +76,7 @@ class Response {
76
76
 
77
77
  error404() {
78
78
 
79
- var obj = this;
79
+ let obj = this;
80
80
  obj.res.writeHead(404, { "Content-Type": "text/plain" });
81
81
  obj.res.write("404 Not Found\n");
82
82
  obj.res.end();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vanilla-jet",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "VannilaJet framework",
5
5
  "main": "index.js",
6
6
  "bin": {