mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 09:23:51 +00:00
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import { unlink } from 'fs';
|
|
|
|
/**
|
|
* @description Ensures variable is string, it skips object types
|
|
* @param val - variable to convert
|
|
* @param {string} [fallback=''] - fallback value
|
|
* @returns {string} - value as string or fallback if not possible
|
|
*/
|
|
export const makeString = (val: unknown, fallback = ''): string => {
|
|
if (typeof val === 'string') return val.trim();
|
|
else if (val == null || val.constructor === Object) return fallback;
|
|
return val.toString().trim();
|
|
};
|
|
|
|
/**
|
|
* @description Delete file from system
|
|
*/
|
|
export const deleteFile = async (filePath: string) => {
|
|
unlink(filePath, (error) => {
|
|
if (error) {
|
|
console.error('Could not delete file:', error);
|
|
}
|
|
});
|
|
};
|
|
|
|
/**
|
|
* @description Verifies if object is empty
|
|
* @param {object} obj
|
|
*/
|
|
export const isEmptyObject = (obj: object) => {
|
|
if (typeof obj === 'object' && obj !== null && !Array.isArray(obj)) {
|
|
return Object.keys(obj).length === 0;
|
|
}
|
|
throw new Error('Variable is not an object');
|
|
};
|
|
|
|
/**
|
|
* @description Removes undefined
|
|
* @param {object} obj
|
|
*/
|
|
export const removeUndefined = <T extends Record<string, unknown>>(obj: T): Partial<T> => {
|
|
return Object.keys(obj).reduce<Partial<T>>((patched, key) => {
|
|
if (typeof obj[key] !== 'undefined') {
|
|
// @ts-expect-error -- not sure how to type this
|
|
patched[key] = obj[key];
|
|
}
|
|
return patched;
|
|
}, {});
|
|
};
|