UNPKG

muwaqqit

Version:

A powerful and flexible TypeScript library for calculating Islamic prayer times based on location, with customizable settings.

13 lines (10 loc) 228 B
import { PrayerTimes } from "../src/index"; const pt = new PrayerTimes({ city: "Cairo", country: "Egypt", method: 5, format: "24h", }); pt.getTimes(new Date()) .then(console.log) .catch(console.error);