UNPKG

textlint

Version:

The pluggable linting tool for text and markdown.

16 lines (14 loc) 285 B
// LICENSE : MIT "use strict"; /** * Processor Map object */ export class PluginMap extends Map<string, Function> { toJSON() { const object = {}; this.forEach((value, key) => { (object as any)[key] = value; }); return object; } }