MiniMap
The default Store Option for Players and Nodes.
Last updated
The default Store Option for Players and Nodes.
Last updated
Returns the Amount of entries
Get a value of a key
Returns: any
Sets a Value into a key, if Key already exists then it gets overridden
Returns: value:any
Checks if the key is existing or not
Deletes a key, if available, if not available nothing will happen
Returns: any
Clears the entire Map
Get an iterator of all entries, if you want to put the entries into an array do this:
`[...map.entries()]`
Get an iterator of all values, if you want to put the entries into an array do this:
`[...map.values()]`
Get an iterator of all keys, if you want to put the entries into an array do this:
`[...map.keys()]`
Run a function upon every entry.
Run a function upon every entry.
Returns: [Key, Value][]
Type:
Returns:
Returns:
Returns: <[Key,Value]>
Returns: <[Value]>
Returns: <[Key]>
Returns:
Returns:
Identical to , but returns a instead of an .
Returns: <Key, Value>
Returns the Map to a JSON like value, just executes and formats is an array instead