Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bluebird (0.17 sec)

  1. internal/color/color.go

    	}()
    
    	YellowBold = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgYellow, color.Bold).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	BlueBold = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgBlue, color.Bold).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 17:57:52 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top