/** * Copyright (c) 2017-present A. Matías Quezada */ /** * Recives a string as a route definition and returns a regex to match that format: * * @example * toRegexp('/contact/{id}/edit')) // Returns: /\/contact\/([^\/]+)\/edit/i * * @example * toRegexp('/contact/{id}/edit').exec('/contact/313/edit')) * // ["/contact/313/edit", "313", index: 0, input: "/contact/313/edit"] * * @param {String} pattern The pattern of the route. * @returns {RegExp} A regex to match that route. */ export default function routeToRegex(pattern: string): RegExp;