added definitions and tests for lcFirst and lowerCaseFirst

This commit is contained in:
Wayne Maurer 2015-11-16 21:04:27 +01:00
parent 276d881930
commit ddab41325d
2 changed files with 4 additions and 0 deletions

View File

@ -35,3 +35,5 @@ b = changeCase.isLower(s);
b = changeCase.isLowerCase(s);
s = changeCase.ucFirst(s);
s = changeCase.upperCaseFirst(s);
s = changeCase.lcFirst(s);
s = changeCase.lowerCaseFirst(s);

View File

@ -34,4 +34,6 @@ declare module "change-case" {
function isLowerCase(s: string): boolean;
function ucFirst(s: string): string;
function upperCaseFirst(s: string): string;
function lcFirst(s: string): string;
function lowerCaseFirst(s: string): string;
}