import read from'./reader.js';
/* Recast of Publisher class to function *//* where should reader come from? we only have one after all */functionpublish(source, settings) {
constdocument = read(source, settings);
returndocument;
}
exportdefault publish;