Files
services/examples/prayer/times/node/prayerTimes.js

13 lines
324 B
JavaScript
Executable File

import * as prayer from "m3o/prayer";
// Get the prayer (salah) times for a location on a given date
async function PrayerTimes() {
let prayerService = new prayer.PrayerService(process.env.MICRO_API_TOKEN);
let rsp = await prayerService.times({
location: "london",
});
console.log(rsp);
}
await PrayerTimes();