UNPKG

weathers-watch

Version:

A free and asynchronous weather API wrapper made in javascript.

5 lines (4 loc) 156 B
const getWeatherInfo = require('./weatherService'); exports.getWeather = async (city, country = '') => { return await getWeatherInfo(city, country); };