map

iterates through all items of Vault

void map(function handler);
handlerfunctiona function that will be called for each item of the vault

Example

//getting ids of all elements of the vault (files)
vault.data.map(function(item){
    console.log(item.id);
});

See also
Back to top