UNPKG

voluptasquisquam

Version:

Image processing and manipulation in JavaScript

10 lines (8 loc) 201 B
export default function invertBinaryLoop() { this.checkProcessable('invertBinaryLoop', { bitDepth: [1] }); for (let i = 0; i < this.size; i++) { this.toggleBit(i); } }