UNPKG

imagenarium

Version:

Use to optimize, handler formats and crop images

26 lines (17 loc) 474 B
'use strict'; var reduce = require('object.reduce'); var validateRegistry = require('./helpers/validateRegistry'); function setTasks(inst, task, name) { inst.set(name, task); return inst; } function registry(newRegistry) { if (!newRegistry) { return this._registry; } validateRegistry(newRegistry); var tasks = this._registry.tasks(); this._registry = reduce(tasks, setTasks, newRegistry); this._registry.init(this); } module.exports = registry;