"use strict"; // FIXME: Ensure that this separator is escaped everywhere else const SEPARATOR = Buffer.from(":"); module.exports = { objectID: (collection, id) => Buffer.concat([ Buffer.from(collection), SEPARATOR, id ]) };