UNPKG

looks-same

Version:

Pure node.js library for comparing PNG-images, taking into account human color perception.

20 lines (15 loc) 335 B
'use strict'; module.exports = class ImageBase { static create(...args) { return new this(...args); } getActualCoord() { throw new Error('Not implemented'); } get width() { throw new Error('Not implemented'); } get height() { throw new Error('Not implemented'); } };