UNPKG

@thi.ng/imago

Version:

JSON & API-based declarative and extensible image processing trees/pipelines

10 lines (9 loc) 206 B
import { meldDeepObj } from "@thi.ng/object-utils"; const exifProc = async (spec, input, ctx) => { const { tags } = spec; meldDeepObj(ctx.exif, tags); return [input, false]; }; export { exifProc };