Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bredele committed Apr 6, 2018
1 parent 0b85117 commit 76cb6f5
Showing 1 changed file with 84 additions and 1 deletion.
85 changes: 84 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,84 @@
# runout
# Runout

[![Build Status](https://travis-ci.org/bredele/runout.svg?branch=master)](https://travis-ci.org/bredele/runout)
[![NPM](https://img.shields.io/npm/v/runout.svg)](https://www.npmjs.com/package/runout)
[![Downloads](https://img.shields.io/npm/dm/runout.svg)](http://npm-stat.com/charts.html?package=runout)
[![pledge](https://bredele.github.io/contributing-guide/community-pledge.svg)](https://github.com/bredele/contributing-guide/blob/master/guidelines.md)

Given an expiration limit, filter dates that are valid, expired or expire soon. This helper also accepts dates formatted in milliseconds or in RFC822 or ISO 861 string formats.

## Usage

```js
const runout = require('runout')

// example using instance of Date
runout([
new Date('01-01-2000'),
new Date('01-01-2100'),
new Date('01-01-2300'),
], new Date('01-01-2101'))
// { valid: [946710000000, 4102470000000], expired: [10413817200000], soon: []}

// exmaple using RFC822 formats
runout([
new Date('01-01-2000'),
'01-01-2100',
new Date('01-01-2300'),
], '01-01-2101')
// { valid: [946710000000, 4102470000000], expired: [10413817200000], soon: []}


// example with a year time range for dates expiring soon
runout([
new Date('01-01-2000'),
new Date('01-01-2100'),
new Date('12-06-2100'),
new Date('01-01-2300'),
], new Date('01-01-2101'), 1000 * 60 * 60 * 24 * 365)
// { valid: [946710000000, 4102470000000], expired: [10413817200000], soon: [4102470000000, 4131759600000]}


```

## Installation

```shell
npm install runout --save
```

[![NPM](https://nodei.co/npm/runout.png)](https://nodei.co/npm/runout/)


## Question

For questions and feedback please use our [twitter account](https://twitter.com/bredeleca). For support, bug reports and or feature requests please make sure to read our
<a href="https://github.com/bredele/contributing-guide/blob/master/guidelines.md" target="_blank">community guideline</a> and use the issue list of this repo and make sure it's not present yet in our reporting checklist.

## Contribution

Bluff is an open source project and would not exist without its community. If you want to participate please make sure to read our <a href="https://github.com/bredele/contributing-guide/blob/master/guidelines.md" target="_blank">guideline</a> before making a pull request. If you have any runout related project, component or other let everyone know in our wiki.

## License

The MIT License (MIT)

Copyright (c) 2016 Olivier Wietrich

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

0 comments on commit 76cb6f5

Please sign in to comment.