mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
19 lines
418 B
Swift
19 lines
418 B
Swift
struct JsonFile: CustomStringConvertible {
|
|
let absolutePath: String
|
|
let relativePath: String
|
|
|
|
var subdirectory: String {
|
|
let index = relativePath.lastIndex(of: "/")!
|
|
return String(relativePath[...index])
|
|
}
|
|
|
|
var name: String {
|
|
let index = relativePath.lastIndex(of: "/")!
|
|
return String(relativePath[relativePath.index(after: index)...])
|
|
}
|
|
|
|
var description: String {
|
|
relativePath
|
|
}
|
|
}
|