Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miyako/calendarjp
Support Japanese Calendar
https://github.com/miyako/calendarjp
4d-class 4d-component
Last synced: about 2 months ago
JSON representation
Support Japanese Calendar
- Host: GitHub
- URL: https://github.com/miyako/calendarjp
- Owner: miyako
- License: mit
- Created: 2024-08-20T10:04:43.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-28T22:33:13.000Z (2 months ago)
- Last Synced: 2024-10-28T23:25:14.346Z (2 months ago)
- Topics: 4d-class, 4d-component
- Language: 4D
- Homepage: https://miyako.github.io/CalendarJp/
- Size: 754 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![version](https://img.shields.io/badge/version-20%20R6%2B-E23089)
![platform](https://img.shields.io/static/v1?label=platform&message=mac-intel%20|%20mac-arm%20|%20win-64&color=blue)
[![license](https://img.shields.io/github/license/miyako/calendar-jp)](LICENSE)
![downloads](https://img.shields.io/github/downloads/miyako/calendar-jp/total)switch to [`no-singleton`](https://github.com/miyako/calendar-jp/tree/no-singleton) branch for 4D 20 LTS compatible version.
# CalendarJp
Support Japanese Calendar
## dependencies.json
```json
{
"dependencies": {
"calendar-jp": {
"github": "miyako/calendar-jp",
"version": "^1.0.20"
}
}
}
```## Usage
```4d
var $CalendarJp : cs.CalendarJp.CalendarJp$CalendarJp:=cs.CalendarJp.CalendarJp.me
//meiji test
$test:=$CalendarJp.convertFromGregorian(!1868-01-25!) //1.1.1
$test:=$CalendarJp.convertFromGregorian(!1868-02-23!) //1.2.1
$test:=$CalendarJp.convertFromGregorian(!1868-03-24!) //1.3.1
$test:=$CalendarJp.convertFromGregorian(!1868-10-23!) //1.9.8
$test:=$CalendarJp.convertFromGregorian(!1868-06-11!) //1.4.21$test:=$CalendarJp.String(!1868-06-11!; "ggggy年M月d日") //明治元年潤4月21日
$test:=$CalendarJp.String(!1989-01-07!; "g.y年M月d日") //S.64年1月7日
$test:=$CalendarJp.String(!1989-01-08!; "ggy年M月d日") //平元年1月8日
$test:=$CalendarJp.String(!2019-04-30!; "gggy年M月d日") //㍻31年4月30日
$test:=$CalendarJp.String(!2019-05-01!; "ggggy年M月d日") //令和元年5月1日
```