mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-02 19:44:08 +08:00
18 lines
282 B
Swift
18 lines
282 B
Swift
//
|
|
// String+GithubDate.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 12/10/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension String {
|
|
|
|
var githubDate: Date? {
|
|
return GithubAPIDateFormatter().date(from: self)
|
|
}
|
|
|
|
}
|