UNPKG

mongoose

Version:
17 lines (13 loc) 242 B
'use strict'; /** * Get the bson type, if it exists * @api private */ function isBsonType(obj, typename) { return ( typeof obj === 'object' && obj !== null && obj._bsontype === typename ); } module.exports = isBsonType;