UNPKG

212 BJavaScriptView Raw
1'use strict';
2
3const get = require('./get');
4
5/*!
6 * Get the bson type, if it exists
7 */
8
9function isBsonType(obj, typename) {
10 return get(obj, '_bsontype', void 0) === typename;
11}
12
13module.exports = isBsonType;