Home Reference Source

src/contacts/utils.js

/** @private */
export const updateContact = (id, stack, data) => {
	return id ?
		stack.updateContact(data) :
		undefined;
};

/** @private */
export const removeContact = (id, stack) => {
	return stack.removeContact({
		id,
	});
};