Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit e5602f9

Browse files
committed
Add missing semicolon
1 parent 15fab0c commit e5602f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

seamless-immutable.development.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@
471471
return makeImmutable(obj, mutatingObjectMethods);
472472
}
473473

474-
var REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol.for && Symbol.for('react.element')
474+
var REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol.for && Symbol.for('react.element');
475475
var REACT_ELEMENT_TYPE_FALLBACK = 0xeac7;
476476

477477
function isReactElement(obj) {

src/seamless-immutable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@
471471
return makeImmutable(obj, mutatingObjectMethods);
472472
}
473473

474-
var REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol.for && Symbol.for('react.element')
474+
var REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol.for && Symbol.for('react.element');
475475
var REACT_ELEMENT_TYPE_FALLBACK = 0xeac7;
476476

477477
function isReactElement(obj) {

0 commit comments

Comments
 (0)