function emptyOrRows(rows) {
	if (!rows) {
		return [];
	}

	return rows;
}

export default {
	emptyOrRows,
}
