import digger from 'html-img-digger'
let tpl = '<div><img src="http://placehold.it/350x150"></div>'
let images = digger.dig(tpl)
images
[
{
url: 'http://placehold.it/350x150',
alt: '',
},
]
let tpl = '<div><img src="http://placehold.it/350x150"></div>'
let images = digger.dig(tpl, { remote: true })
images
[
{
url: 'http://placehold.it/350x150',
alt: '',
width: 350,
height: 150,
},
]
npm run dev
npm test
dig()
✓ 從傳入的 htmlString 中,採集出 img 物件們
✓ 允許遠端採集圖片寬與高(using http request) (651ms)