Add return type for mixedNumerics function

This commit is contained in:
Matthew Lilley 2018-05-10 10:25:33 +01:00
parent bc0b2241de
commit c02e794b0d
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ function detectScript(character: string): string {
return s;
}
function mixedNumerics(validationString: string) {
function mixedNumerics(validationString: string): boolean {
const result: string[] = [];
for (const character of validationString) {
if (numeric.test(character)) {