UNPKG

twing

Version:

First-class Twig engine for Node.js

12 lines (11 loc) 297 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseRegularExpression = parseRegularExpression; const parser = require('regex-parser'); /** * @param {string} input * @returns {RegExp} */ function parseRegularExpression(input) { return parser(input); }