isWindows returns true if osName indicates Windows.
(osName string)
| 33 | |
| 34 | // isWindows returns true if osName indicates Windows. |
| 35 | func isWindows(osName string) bool { |
| 36 | return strings.EqualFold(osName, "Windows") |
| 37 | } |
| 38 | |
| 39 | // --------------------------------------------------------------------------- |
| 40 | // Shared response builders |
no outgoing calls