48 lines
1.4 KiB
TypeScript
Raw Normal View History

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {isDevMode} from '@angular/core';
export function assertArrayOfStrings(identifier: string, value: any) {
2017-03-02 09:37:01 -08:00
if (!isDevMode() || value == null) {
return;
}
2016-10-19 13:42:39 -07:00
if (!Array.isArray(value)) {
throw new Error(`Expected '${identifier}' to be an array of strings.`);
}
for (let i = 0; i < value.length; i += 1) {
2016-10-19 13:42:39 -07:00
if (typeof value[i] !== 'string') {
throw new Error(`Expected '${identifier}' to be an array of strings.`);
}
}
}
const INTERPOLATION_BLACKLIST_REGEXPS = [
2016-06-21 16:55:17 -07:00
/^\s*$/, // empty
/[<>]/, // html tag
/^[{}]$/, // i18n expansion
2016-06-24 14:31:35 -07:00
/&(#|[a-z])/i, // character reference,
/^\/\//, // comment
];
export function assertInterpolationSymbols(identifier: string, value: any): void {
2017-03-02 09:37:01 -08:00
if (value != null && !(Array.isArray(value) && value.length == 2)) {
throw new Error(`Expected '${identifier}' to be an array, [start, end].`);
2017-03-02 09:37:01 -08:00
} else if (isDevMode() && value != null) {
const start = value[0] as string;
const end = value[1] as string;
// black list checking
INTERPOLATION_BLACKLIST_REGEXPS.forEach(regexp => {
if (regexp.test(start) || regexp.test(end)) {
throw new Error(`['${start}', '${end}'] contains unusable interpolation symbol.`);
}
});
}
}