Skip to content

v8.0.0

Compare
Choose a tag to compare
@DudaGod DudaGod released this 20 Oct 09:40
· 37 commits to master since this release

💣 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');