getPakshaName function

String getPakshaName(
  1. bool isShukla
)

Gets the name of the paksha (lunar fortnight)

Implementation

String getPakshaName(bool isShukla) {
  return isShukla ? 'Shukla' : 'Krishna';
}