Skip to content

Commit c1e14fc

Browse files
committed
🚿 remove unnecessary semicolons
1 parent 6ec1d00 commit c1e14fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/prototype/dom/selector_engine.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable no-undef */
22
Prototype._original_property = window.Sizzle;
33

4-
;(function () {
4+
(function () {
55
function fakeDefine(fn) {
66
Prototype._actual_sizzle = fn();
77
}
@@ -18,7 +18,7 @@ Prototype._original_property = window.Sizzle;
1818

1919
//= require "../../../vendor/sizzle/sizzle"
2020

21-
;(function() {
21+
(function() {
2222
if (typeof Sizzle !== 'undefined') {
2323
// Sizzle was properly defined.
2424
return;
@@ -41,7 +41,7 @@ Prototype._original_property = window.Sizzle;
4141
}
4242
})();
4343

44-
;(function(engine) {
44+
(function(engine) {
4545
function select(selector, scope) {
4646
return engine(selector, scope || document);
4747
}

0 commit comments

Comments
 (0)