UNPKG

join-images

Version:

Merge multiple images into a single image

14 lines 367 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = alignImage; function alignImage(total, size, align) { const midpoint = 2; if (align === 'center') { return (total - size) / midpoint; } if (align === 'end') { return total - size; } return 0; } //# sourceMappingURL=alignImage.js.map