You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
400 B
19 lines
400 B
6 years ago
|
//
|
||
|
// Date+Bundle.swift
|
||
|
// DateTools
|
||
|
//
|
||
|
// Created by Matthew York on 8/26/16.
|
||
|
// Copyright © 2016 Matthew York. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
public extension Bundle {
|
||
|
|
||
|
class func dateToolsBundle() -> Bundle {
|
||
|
let assetPath = Bundle(for: Constants.self).resourcePath!
|
||
|
return Bundle(path: NSString(string: assetPath).appendingPathComponent("DateTools.bundle"))!
|
||
|
}
|
||
|
}
|
||
|
|