UNPKG

expose-port

Version:

Expose localhost for testing the site in mobile app or another devices

15 lines (9 loc) 223 B
import turl from 'turl'; async function linkshorten(url) { await turl.shorten(url).then((res) => { console.log(res); }).catch((err) => { console.log(err); }); }; export default linkshorten