looks-same with automatic url downloading, jpg->png conversion and promises
npm install looks-same-plus


#### Module usage
``javascript
const lsp = require( 'looks-same-plus' )
const opts = undefined // e.g. { tolerance: 5 }, see https://github.com/gemini-testing/looks-same docs.
const callback = undefined // node style callback support
const r = await lsp(
'https://yt3.ggpht.com/a/AGF-l79FVckie4j9WT-4cEW6iu3gPd4GivQf_XNSWg=s176-c-k-c0x00ffffff-no-rj-mo',
'https://yt3.ggpht.com/a/AATXAJzlZzr16izsGHBCHIkO3H7n-UiHyZPCJFEPiQ=s176-c-k-c0x00ffffff-no-rj-mo',
opts,
callback
)
// see https://github.com/gemini-testing/looks-same docs for return value information
r.equal && console.log( 'they are similar' ) || console.log( 'not similar' )
`
```
npm test