Skip to content

Commit

Permalink
Dates Library Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
azenla committed Sep 2, 2014
1 parent cf93c0f commit 0518a3b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/dates.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
*/
library github.dates;

import "package:quiver/time.dart";

/**
* Creates a Friendly Date and Time
*/
Expand All @@ -16,8 +14,7 @@ String friendlyDateTime(DateTime time) {
* Creates a Friendly Date
*/
String friendlyDate(DateTime time) {
return
"${monthName(time.month)} ${time.day}${friendlyDaySuffix(time.day)}, ${time.year}";
return "${monthName(time.month)} ${time.day}${friendlyDaySuffix(time.day)}, ${time.year}";
}

/**
Expand Down

0 comments on commit 0518a3b

Please sign in to comment.