21 lines
414 B
Swift
21 lines
414 B
Swift
//
|
|
// Templates.swift
|
|
// CuckooGeneratorFramework
|
|
//
|
|
// Created by Tadeas Kriz on 11/14/17.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct Templates { }
|
|
|
|
extension String {
|
|
func indented(times: Int = 1) -> String {
|
|
let indentation = String(repeating: "\t", count: times)
|
|
|
|
return self.components(separatedBy: CharacterSet.newlines).map {
|
|
indentation + $0
|
|
}.joined(separator: "\n")
|
|
}
|
|
}
|