isBsonType.js 226 B

123456789101112131415
  1. 'use strict';
  2. /*!
  3. * Get the bson type, if it exists
  4. */
  5. function isBsonType(obj, typename) {
  6. return (
  7. typeof obj === 'object' &&
  8. obj !== null &&
  9. obj._bsontype === typename
  10. );
  11. }
  12. module.exports = isBsonType;