Skip to content

Instantly share code, notes, and snippets.

@forivall
Created October 16, 2024 23:25
Show Gist options
  • Save forivall/18f98b927ba6563a1c364b2442a259d6 to your computer and use it in GitHub Desktop.
Save forivall/18f98b927ba6563a1c364b2442a259d6 to your computer and use it in GitHub Desktop.
function analyseObjectId(/** @type {import('bson').ObjectId} */ oid) {
const randomidBuffer = Buffer.from(
oid.buffer.buffer,
oid.buffer.byteOffset + 4,
5,
);
const counterBuffer = Buffer.alloc(4);
oid.buffer.copy(counterBuffer, 1, 9);
return {
timestamp: oid.buffer.readInt32BE(0),
randomprocid: randomidBuffer.toString("hex"),
counter: counterBuffer.readUInt32BE(),
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment