Skip to content

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Mar 24, 2020
1 parent 3809c13 commit 6e782da
Show file tree
Hide file tree
Showing 3 changed files with 131 additions and 217 deletions.
6 changes: 6 additions & 0 deletions browser_build/bson.js
Original file line number Diff line number Diff line change
Expand Up @@ -17557,6 +17557,8 @@ return /******/ (function(modules) { // webpackBootstrap
index = serializeInt32(buffer, key, value, index, true);
} else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') {
index = serializeMinMax(buffer, key, value, index, true);
} else if (typeof value['_bsontype'] !== 'undefined') {
throw new TypeError('Unrecognized or invalid _bsontype: ' + value['_bsontype']);
}
}
} else if (object instanceof Map) {
Expand Down Expand Up @@ -17635,6 +17637,8 @@ return /******/ (function(modules) { // webpackBootstrap
index = serializeInt32(buffer, key, value, index);
} else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') {
index = serializeMinMax(buffer, key, value, index);
} else if (typeof value['_bsontype'] !== 'undefined') {
throw new TypeError('Unrecognized or invalid _bsontype: ' + value['_bsontype']);
}
}
} else {
Expand Down Expand Up @@ -17716,6 +17720,8 @@ return /******/ (function(modules) { // webpackBootstrap
index = serializeInt32(buffer, key, value, index);
} else if (value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') {
index = serializeMinMax(buffer, key, value, index);
} else if (typeof value['_bsontype'] !== 'undefined') {
throw new TypeError('Unrecognized or invalid _bsontype: ' + value['_bsontype']);
}
}
}
Expand Down
Loading

0 comments on commit 6e782da

Please sign in to comment.