@bscotch/utility
Advanced tools
Comparing version 0.8.2 to 0.8.3
@@ -0,1 +1,5 @@ | ||
## [0.8.3](https://github.com/bscotch/node-util/compare/v0.8.2...v0.8.3) (2020-12-16) | ||
## [0.8.2](https://github.com/bscotch/node-util/compare/v0.8.1...v0.8.2) (2020-11-27) | ||
@@ -2,0 +6,0 @@ |
@@ -0,0 +0,0 @@ Copyright 2020 Butterscotch Shenanigans, Inc. |
{ | ||
"name": "@bscotch/utility", | ||
"version": "0.8.2", | ||
"version": "0.8.3", | ||
"description": "Bscotch Utilities: Methods for common Node.js needs.", | ||
@@ -5,0 +5,0 @@ "engines": { |
@@ -207,1 +207,20 @@ # Bscotch Utilities | ||
``` | ||
## Dates | ||
```ts | ||
import { | ||
isValidDate, | ||
dateIsOlderThanSecondsAgo, | ||
dateIsOlderThanMinutesAgo, | ||
dateIsOlderThanHoursAgo, | ||
dateIsOlderThanDaysAgo, | ||
dateIsInTheFuture, | ||
dateIsInThePast, | ||
dateIsGreaterThan, | ||
dateIsLessThan, | ||
chronologySortReverse, | ||
chronologySort | ||
} from '@bscotch/utility'; | ||
``` |
47759
225