import formatDisplayName, { roleLabels } from "./profile-format.mjs"; const profile = { name: "Ada Lovelace", role: "admin", }; console.log(formatDisplayName(profile)); console.log(`Known roles: ${Object.keys(roleLabels).join(", ")}`);