Skip to content

Utilities > Function

toObjId

Convert something into a mongodb ObjectId

ts
/**
 * 
 * Convert smth into ObjectId
 * 
 * @param input Any input works, as long as it can be used to create an ObjectId
 * @returns 
 */
export const toObjId = (input: any): ObjectId => {
    return new ObjectId(input)
}