keys

IMD.keys()

Returns an array of the keys contained in In Memory Data (cache).

Example

IMD.put("newTempPassword", "123456");
IMD.put("newTempUser", "Alex");

console.log(IMD.keys());
['newTempPassword', 'newTempUser']