textlint
Version:
The pluggable linting tool for natural language.
18 lines • 413 B
JavaScript
// LICENSE : MIT
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PluginMap = void 0;
/**
* Processor Map object
*/
class PluginMap extends Map {
toJSON() {
const object = {};
this.forEach((value, key) => {
object[key] = value;
});
return object;
}
}
exports.PluginMap = PluginMap;
//# sourceMappingURL=processor-map.js.map