2016-04-29 00:50:03 +00:00
|
|
|
import {BaseException} from '../src/facade/exceptions';
|
2016-06-08 23:38:52 +00:00
|
|
|
import {assertionsEnabled, isArray, isBlank, isString} from '../src/facade/lang';
|
2016-03-09 22:55:27 +00:00
|
|
|
|
|
|
|
|
export function assertArrayOfStrings(identifier: string, value: any) {
|
|
|
|
|
if (!assertionsEnabled() || isBlank(value)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!isArray(value)) {
|
|
|
|
|
throw new BaseException(`Expected '${identifier}' to be an array of strings.`);
|
|
|
|
|
}
|
|
|
|
|
for (var i = 0; i < value.length; i += 1) {
|
|
|
|
|
if (!isString(value[i])) {
|
|
|
|
|
throw new BaseException(`Expected '${identifier}' to be an array of strings.`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|