File tree 2 files changed +0
-9
lines changed
2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ exports.setId = function (id) {
21
21
return function ( node ) {
22
22
return function ( ) {
23
23
node . id = id ;
24
- return { } ;
25
24
} ;
26
25
} ;
27
26
} ;
@@ -42,7 +41,6 @@ exports.setClassName = function (className) {
42
41
return function ( node ) {
43
42
return function ( ) {
44
43
node . className = className ;
45
- return { } ;
46
44
} ;
47
45
} ;
48
46
} ;
@@ -78,7 +76,6 @@ exports.setAttribute = function (name) {
78
76
return function ( element ) {
79
77
return function ( ) {
80
78
element . setAttribute ( name , value ) ;
81
- return { } ;
82
79
} ;
83
80
} ;
84
81
} ;
@@ -104,7 +101,6 @@ exports.removeAttribute = function (name) {
104
101
return function ( element ) {
105
102
return function ( ) {
106
103
element . removeAttribute ( name ) ;
107
- return { } ;
108
104
} ;
109
105
} ;
110
106
} ;
@@ -121,7 +117,6 @@ exports.setScrollTop = function (scrollTop) {
121
117
return function ( node ) {
122
118
return function ( ) {
123
119
node . scrollTop = scrollTop ;
124
- return { } ;
125
120
} ;
126
121
} ;
127
122
} ;
@@ -136,7 +131,6 @@ exports.setScrollLeft = function (scrollLeft) {
136
131
return function ( node ) {
137
132
return function ( ) {
138
133
node . scrollLeft = scrollLeft ;
139
- return { } ;
140
134
} ;
141
135
} ;
142
136
} ;
Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ exports.setNodeValue = function (value) {
46
46
return function ( node ) {
47
47
return function ( ) {
48
48
node . nodeValue = value ;
49
- return { } ;
50
49
} ;
51
50
} ;
52
51
} ;
@@ -57,15 +56,13 @@ exports.setTextContent = function (value) {
57
56
return function ( node ) {
58
57
return function ( ) {
59
58
node . textContent = value ;
60
- return { } ;
61
59
} ;
62
60
} ;
63
61
} ;
64
62
65
63
exports . normalize = function ( node ) {
66
64
return function ( ) {
67
65
node . normalize ( ) ;
68
- return { } ;
69
66
} ;
70
67
} ;
71
68
You can’t perform that action at this time.
0 commit comments