From b16d60b52b647b42ee439a5f1fe1758ae430b9e8 Mon Sep 17 00:00:00 2001 From: Surma Date: Wed, 1 Aug 2018 12:36:31 +0100 Subject: [PATCH] No name on preprocessors --- src/codecs/imagequant/quantizer.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/codecs/imagequant/quantizer.ts b/src/codecs/imagequant/quantizer.ts index cb0bb2fc..bef87bd9 100644 --- a/src/codecs/imagequant/quantizer.ts +++ b/src/codecs/imagequant/quantizer.ts @@ -1,6 +1,5 @@ import QuantizerWorker from './Quantizer.worker'; -export const name = 'Image Quanitzer'; export async function quantize(data: ImageData, opts: QuantizeOptions): Promise { const quantizer = await new QuantizerWorker(); return quantizer.quantize(data, opts);