mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-17 01:35:37 -05:00
1.0 wip
This commit is contained in:
9
src/system/string.ts
Normal file
9
src/system/string.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
//import { escapeRegExp as _escapeRegExp } from 'lodash';
|
||||
const _escapeRegExp = require('lodash.escaperegexp');
|
||||
|
||||
export namespace Strings {
|
||||
export function escapeRegExp(s: string): string {
|
||||
return _escapeRegExp(s);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user