From 1bc1d7b8e6fa4e45147d08fa1966f411b39a6f4a Mon Sep 17 00:00:00 2001 From: rocktimsaikia Date: Wed, 14 Oct 2020 22:21:18 +0530 Subject: [PATCH] update readme --- readme.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index a5259a7..e9becb6 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # meta-fetcher :mag_right: -> Tiny URL meta-data fetcher that scraps the meta-data of a given `URL` string. +> Tiny URL meta-data fetcher that scraps the meta-data of a given `URL` string. ![Travis (.com) branch](https://img.shields.io/travis/com/rocktimsaikia/meta-fetcher/master) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/xojs/xo) @@ -15,12 +15,12 @@ npm install meta-fetcher ## Basic Usage ```js -const {fetchMetaData} = require('meta-fetcher'); +const fetchMetaData = require('meta-fetcher'); (async () => { const result = await fetchMetaData('https://hoppscotch.io/'); console.log(result); - + /* { basic_metadata: { @@ -47,7 +47,7 @@ const {fetchMetaData} = require('meta-fetcher'); 'https://hoppscotch.io/_nuxt/icons/icon_64x64.9834b3.png' ] } - */ + */ })(); ```