Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 562 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 562 Bytes

Unfurled

So, like, what does unfurl even mean?

Spread out from a rolled or folded state

Install

yarn add unfurled

Usage

unfurled(url, [opts])

var unfurled = require('unfurled')

unfurled('http://example.com')
  .then(console.log)
  .catch(console.error)

Or if you're cool and use ES7 async await

var unfurled = require('unfurled')

var result = await unfurled('http://example.com')