File size: 100 Bytes
c09f67c
 
 
1
2
3
4
export const logger = (message: string, ...rest: string[]) => {
  console.log(message, ...rest);
};