You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
558 B
22 lines
558 B
export function pluralize(string, count) { |
|
if (count === 1) { |
|
return string; |
|
} |
|
return `${string}s`; |
|
} |
|
|
|
export function getDiffInDaysFromNow(timestamp) { |
|
const time = typeof timestamp === 'string' ? new Date(timestamp) : timestamp; |
|
return (new Date() - time) / (24 * 3600 * 1000); |
|
} |
|
|
|
// Take a nested object of state metadata and merge it into |
|
// a single flattened node. |
|
export function mergeMeta(meta) { |
|
return Object.keys(meta).reduce((acc, key) => { |
|
const value = meta[key]; |
|
Object.assign(acc, value); |
|
|
|
return acc; |
|
}, {}); |
|
}
|
|
|