UNPKG

mdtocs

Version:

Markdown table of contents generator.

10 lines (9 loc) 269 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.validate = validate; function validate(markdown) { if (typeof markdown !== 'string') { throw new TypeError('First argument must be a string'); } return markdown; }