v8.0.0
💣 Breaking changes
- drop support of node versions less than 12
- drop old node-style callback interface support
How it used before:
looksSame('image1.png', 'image2.png', function(error, {equal}) {
// ...
});
How it use now:
const {equal} = await looksSame('image1.png', 'image2.png');