IsDev returns true if this is a development build. CI builds are also considered development builds.
()
| 96 | // IsDev returns true if this is a development build. |
| 97 | // CI builds are also considered development builds. |
| 98 | func IsDev() bool { |
| 99 | return IsDevVersion(Version()) |
| 100 | } |
| 101 | |
| 102 | // IsSlim returns true if this is a slim build. |
| 103 | func IsSlim() bool { |
no test coverage detected