UNPKG

textlint

Version:

The pluggable linting tool for text and markdown.

15 lines 298 B
// LICENSE : MIT "use strict"; /** * Processor Map object */ export class PluginMap extends Map { toJSON() { const object = {}; this.forEach((value, key) => { object[key] = value; }); return object; } } //# sourceMappingURL=processor-map.js.map