mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2024-11-10 05:34:44 +00:00
66dd92f0dc
Signed-off-by: Arthur Lu <learthurgo@gmail.com>
20 lines
527 B
JavaScript
20 lines
527 B
JavaScript
/**
|
|
* @returns {Array<Object>} An array of reviews found in localStorage
|
|
*/
|
|
export function getReviewsFromStorage() {
|
|
let result = JSON.parse(localStorage.getItem("reviews"));
|
|
if (result) {
|
|
return result;
|
|
}
|
|
return new Array(0);
|
|
}
|
|
|
|
/**
|
|
* Takes in an array of reviews, converts it to a string, and then
|
|
* saves that string to 'reviews' in localStorage
|
|
* @param {Array<Object>} reviews An array of reviews
|
|
*/
|
|
export function saveReviewsToStorage(reviews) {
|
|
localStorage.setItem("reviews", JSON.stringify(reviews));
|
|
}
|