Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/hemangshah/Datify

Easypeasy date functions. 🕛
https://github.com/hemangshah/Datify

date date-extension datify swift swift-date-extension

Last synced: about 2 months ago
JSON representation

Easypeasy date functions. 🕛

Lists

README

        

# Datify 🕛

Easypeasy date functions.

![License](https://img.shields.io/badge/License-MIT-lightgrey.svg)
![Platform](https://img.shields.io/badge/Platforms-iOS-red.svg)
![Swift 3.x](https://img.shields.io/badge/Swift-3.x-blue.svg)
![MadeWithLove](https://img.shields.io/badge/Made%20with%20%E2%9D%A4-India-green.svg)
[![Awesome-Swift](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/matteocrippa/awesome-swift/)

Usage:

````swift
print("now: \(Date.init())")
print("8 days later: \(8.days.fromNow)")
print("2 weeks before: \(2.weeks.ago)")
print("5 days, 3 month later: \((5.days + 3.months).fromNow)")
````

Output:

now: 2017-06-06 10:42:23 +0000
8 days later: 2017-06-14 10:42:23 +0000
2 weeks before: 2017-05-23 10:42:23 +0000
5 days, 3 month later: 2017-09-11 10:42:23 +0000


Note:

This library was originally written as [SwiftDateTimeExtensions](https://github.com/schluete/SwiftDateTimeExtensions) but it was too old for new Swift version and needed improvements.

I am also planning to add more features to this class in future thus created a separate repo instead a fork.