.get()
Returns the first entry that matches the provided filter.
get(filter)
// Note: Users is a collection.
Users.create({ id: 1, name: '5antos' }); // { id: 1, name: '5antos' }
Users.get(u => u.id === 1); // { id: 1, name: '5antos' }
Users.get(u => u.name === 'Unnamed user'); // nullLast updated