add minimatch

This commit is contained in:
2016-07-22 14:59:09 +02:00
parent db55a46d8e
commit 24df2fd54f
3 changed files with 17 additions and 1 deletions

View File

@ -32,4 +32,11 @@ export class Stringmap {
checkString(stringArg:string):boolean{
return this._stringArray.indexOf(stringArg) != -1;
}
/**
* checks stringPresence with minimatch
*/
checkMinimatch(stringArg:string){
}
}