Skip to content

Latest commit

 

History

History
107 lines (73 loc) · 2 KB

readme.md

File metadata and controls

107 lines (73 loc) · 2 KB

rainge

npm version npm download count XO code style

Linux & OSX Windows

Use date ranges that never need updating


Install

npm install --save rainge

Usage

Node

const rainge = require('rainge');

// assuming the current year is 2016:
rainge(2016);
//=> '2016'

rainge(1999);
//=> '1999 - 2016'

Web

<script src="https://rawgit.com/dawsonbotsford/rainge/master/bundle.js"></script>
<script>
  alert('\u00A9 ' + rainge(1999));
  //=> © 1999 - 2016
</script>

Or download it with npm install --save rainge and reference it as:

<script src="node_modules/rainge/bundle.js"></script>

About

I was tired of seeing websites in 2016 that said

© 2015

or even worse

© 2012 - 2014

Using rainge, you set your copyright year once and it will automatically change year-to-year. rainge(2016) would return "2016" until 2017, at which point rainge(2016) would return "2016 - 2017"


API

rainge(startYear)

startYear

Type: string || number

returns

Type: string


Related


License

MIT © Dawson Botsford