/** * @since 0.1.0 * * @packageDocumentation */ /*! * @maddimathon/utility-typescript@2.0.0-beta.2 * @license MIT */ /** * Escapes a string for use in a regular expression. * * @source * * @example * ```ts * new RegExp( `^${ escRegExp( filePath ) }\\/.+`, 'g' ); * ``` * * @param str To convert. * * @return Escaped string. * * @since 0.1.0 */ export declare function escRegExp(str: string): string; //# sourceMappingURL=escRegExp.d.ts.map