UNPKG

mdast-util-toc

Version:

mdast utility to generate a table of contents from a tree

10 lines (9 loc) 196 B
/** * Transform a string into an applicable expression. * * @param {string} value * @returns {RegExp} */ export function toExpression(value) { return new RegExp('^(' + value + ')$', 'i') }