Popularity
0.6
Stable
Activity
0.0
Stable
0
1
0

Monthly Downloads: 20
Programming language: Haskell
License: MIT License
Tags: Time    

korea-holidays alternatives and similar packages

Based on the "Time" category.
Alternatively, view korea-holidays alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of korea-holidays or a related project?

Add another 'Time' Package

README

korea-holidays

Build Status Hackage-Deps Hackage

korea-holidays is a Haskell library to check if a given date is a Korean Holiday.

Usage

Korea.getHoliday 2000 1 1 `shouldBe`
      Just
        Holiday
          {date = KM.MD (1, 1), name = "New Year's Day", lunar = Nothing}

Korea.getHoliday 2019 3 1 `shouldBe`
      Just
        Holiday
          {date = KM.MD (3, 1), name = "March 1 Movement Day", lunar = Nothing}

Add to your dependency

In your package.yaml

dependencies:
- korea-holidays