Files
DefinitelyTyped/types/escape-string-regexp/index.d.ts
2017-03-24 14:27:52 -07:00

11 lines
327 B
TypeScript

// Type definitions for escape-string-regexp
// Project: https://github.com/sindresorhus/escape-string-regexp
// Definitions by: kruncher <https://github.com/kruncher/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function escapeStringRegexp(str: string): string;
export = escapeStringRegexp;