-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathhelpers.js
More file actions
86 lines (73 loc) · 1.77 KB
/
helpers.js
File metadata and controls
86 lines (73 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const axios = require('axios');
/**
* flattens a nested array
* @param {array} arr an array ex: [1,2,[3,4,[5]]]
* @returns {array} ex: [1,2,3,4,5]
*/
const flattenArr = (arr) => {
const retVal = [];
const helper = (val) => {
for (let i = 0; i < val.length; i++) {
if (Array.isArray(val[i])) {
helper(val[i]);
} else {
retVal.push(val[i]);
}
}
};
helper(arr);
return retVal;
};
/**
* makes an async request to a placeholder API
* @returns {object} on success returns the successful response object and on failure returns a formatted error object
*/
const dataFetcher = async () => {
try {
const data = await axios.get('https://jsonplaceholder.typicode.com/users');
return data;
} catch (e) {
throw new Error({ error: e, message: 'An Error Occurred' });
}
};
/**
* sorts an array using a callback function supplied as an argument
* @param {array} arr generic array
* @param {function} sortFn a callback function to sort the array
* @returns {array}
*/
const sortList = (arr, sortFn) => {
if (sortFn && arr.length > 1) {
return sortFn(arr);
}
return arr;
};
/**
* Formats a number to US currency
* @param {number} num
* @returns {string} ex: $3.99
*/
const formatCurrency = (num) => {
if (isNaN(num)) return '$0.00';
return `$${num.toFixed(2)}`;
};
/**
* Resolves (or rejects) an array of promises
* @param {array} tasks an array of promises ex: [new Promise((res, rej) => res())]
* @returns {array} of resolved promises or an error
*/
const handlePromises = async (tasks = []) => {
try {
const [...data] = await Promise.all(tasks);
return data;
} catch (e) {
throw new Error(e);
}
};
module.exports = {
flattenArr,
dataFetcher,
sortList,
formatCurrency,
handlePromises
};