Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit f013751

Browse files
committed
Fix eslint issues.
1 parent d303bbe commit f013751

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/DOM/HTML/History.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
// module DOM.HTML.History
2+
"use strict";
23

3-
exports.history = function(window) {
4-
return function() {
5-
return window.history;
6-
};
7-
}
84
exports.back = function(history) {
95
return function() {
106
return history.back();

src/DOM/HTML/Window.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ exports.history = function(window) {
2222
return function() {
2323
return window.history;
2424
};
25-
}
25+
};
2626

2727
exports.innerWidth = function (window) {
2828
return function () {

0 commit comments

Comments
 (0)