FileName returns the StaticFile's FileName if is not the empty string, otherwise it returns its FileNameBytes concatenated into a string.
()
| 277 | |
| 278 | // FileName returns the StaticFile's FileName if is not the empty string, otherwise it returns its FileNameBytes concatenated into a string. |
| 279 | func (sf StaticFile) FileName() string { |
| 280 | return sf.b.ss.FileNameString() |
| 281 | } |
| 282 | |
| 283 | // AsStaticFile returns the Blob as a StaticFile if it represents |
| 284 | // one. Otherwise, it returns false in the boolean parameter and the |
nothing calls this directly
no test coverage detected