Skip to content

Commit 34ea31e

Browse files
committed
🔪 useless return statements
1 parent 81d3bf6 commit 34ea31e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/traces/scattergl/convert.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,17 +117,14 @@ proto.initObject = function(createFn, options, objIndex) {
117117
obj._index = objIndex;
118118
}
119119
obj.update(options);
120-
return obj;
121120
}
122121

123122
function clear() {
124123
if(obj) obj.update(options0);
125-
return obj;
126124
}
127125

128126
function dispose() {
129127
if(obj) obj.dispose();
130-
return obj;
131128
}
132129

133130
return {

0 commit comments

Comments
 (0)