UNPKG

@itkyk/ftp-controller

Version:

## How to use this module. 1. Npm module install ``` $ npm i -D @itkyk/ftp-controller ```

15 lines (12 loc) 327 B
class Util { static logGreen = (log: string):string => { return `\u001b[32m${log}\u001b[0m`; } static logBlue = (log:string):string => { return `\u001b[34m${log}\u001b[0m`; } static logRed = (log:string):string => { return `\u001b[31m${log}\u001b[0m`; } } export default Util;