8000 GitHub - bradwoo8621/moment-taiwan: Taiwan format support for momentjs
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bradwoo8621/moment-taiwan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#moment-taiwan A Taiwan calendar system plugin for moment.js.

Status

Build Status

#About

Taiwan calendar is a calendar which used in Taiwan, China. Read more on Wikipedia or see Calendar Converter.

This plugin adds Taiwan calendar support to momentjs library.

Calendar conversion as below,

  • Gregorian to Taiwan
    year < 1911 : year - 1912
    year > 1911 : year - 1911
  • Taiwan to Gregorian
    year >= 1 : year + 1911
    year == 0 : 1912
    year < 0 : year + 1912

#Where to use it

In Browser

You may use the target/moment-taiwan.js file.

<script src="moment.js"></script>
<script src="moment-taiwan.js"></script>
<script>
  moment().format('tYY/MM/DD');
</script>

NodeJS

var tw = require('moment-taiwan');
var date = moment('104/10/20', 'tYY/MM/DD');

#API

This plugin tries to mimic momentjs api. Basically, when you want to format or parse a string, use tYY. For example:

m = moment('104/01/01', 'tYY/MM/DD') // Parse a Taiwan date
m.format('tYY/MM/DD [is] YYYY/M/D') // 104/01/01 is 2015/01/01

m.twYear() // 104

#License

MIT

About

Taiwan format support for momentjs

Resources

License

Stars

Watchers

Forks

Packages

No packages published
0