1234567891011121314151617 |
- //
- // String+Extensions.swift
- // InputBarAccessoryView
- //
- // Created by Ryan Nystrom on 12/22/17.
- // Modified by Nathan Tannar on 09/18/18
- // Copyright © 2017 Ryan Nystrom. All rights reserved.
- //
- import Foundation
- internal extension Character {
-
- static var space: Character {
- return " "
- }
- }
|