... this.me Docs modules/identity.js

Source

modules/identity.js

/**
 * @module a. Identity
 * @description Methods to manage identity for the `Me` class.
 */

/**
 * @function
 * @description Retrieves the username (identity) of the `me` instance.
 * 
 * This method returns the `me` object, which includes the username that 
 * was set during the creation of the instance.
 * 
 * @param {Object} identity - The identity object of the `me` instance.
 * @returns {Object} The `me` username identity object.
 * 
 * @example
 * console.log(me.getMe()); // { username: "suiGn" }
 */
export function getMe(identity) {
    return identity;
  }

By neurons.me