Skip to content

Commit c67d42f

Browse files
committed
add missing semicolon
1 parent d81c0fe commit c67d42f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/node_modules/pouchdb-selector-core/src

packages/node_modules/pouchdb-selector-core/src/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { clone } from 'pouchdb-utils';
44
// can be "deep" due to dot notation
55
function getFieldFromDoc(doc, parsedField) {
66
if (!doc) {
7-
return
7+
return;
88
}
99
var value = doc;
1010
for (var i = 0, len = parsedField.length; i < len; i++) {

0 commit comments

Comments
 (0)