Files
lsp/node_modules/mongoose/lib/cast/objectid.js
Arnaud Nelissen 3af7ddab06 Initial commit
2021-11-17 11:25:08 +01:00

29 lines
570 B
JavaScript

'use strict';
const ObjectId = require('../driver').get().ObjectId;
const assert = require('assert');
module.exports = function castObjectId(value) {
if (value == null) {
return value;
}
if (value instanceof ObjectId) {
return value;
}
if (value._id) {
if (value._id instanceof ObjectId) {
return value._id;
}
if (value._id.toString instanceof Function) {
return new ObjectId(value._id.toString());
}
}
if (value.toString instanceof Function) {
return new ObjectId(value.toString());
}
assert.ok(false);
};