UNPKG

smart-column-indenter

Version:

A smart source code indenter that indent the code into columns

11 lines 293 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Token { constructor(kind, content, level) { this.kind = kind; this.content = content; this.level = level; } } exports.default = Token; //# sourceMappingURL=Token.js.map