4 lines
106 B
TypeScript
4 lines
106 B
TypeScript
|
export const error = (message: Error | string, ...args: any[]) => {
|
||
|
console.error(message, ...args);
|
||
|
};
|