Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cht8687/year-of-tiger

Check if the year is year of tiger in Chinese Zodiac
https://github.com/cht8687/year-of-tiger

Last synced: 10 days ago
JSON representation

Check if the year is year of tiger in Chinese Zodiac

Awesome Lists containing this project

README

        

# year-of-tiger [![Build Status](https://travis-ci.org/cht8687/year-of-tiger.svg?branch=master)](https://travis-ci.org/cht8687/year-of-tiger)

> Check if is year of Tiger

## Install

```
$ npm install --save year-of-tiger
```

## Usage

```js

const yearOfTiger = require('year-of-tiger');

yearOfTiger(1986);
// true

yearOfTiger(1987);
// false

```
## API

### yearOfTiger([year])

#### year

Type: `number`
Default: current year

### yearOfTiger([date])

#### date

Type: `date`
Default: `new Date()`

## License

MIT © [haotian Chang](https://github.com/cht8687)