Function
addCreateAttribute
(
create: IcuCreateOpCodes,
newIndex: number,
attrName: string,
attrValue: string,
)
Source from the content-addressed store, hash-verified
| 975 | } |
| 976 | |
| 977 | function addCreateAttribute( |
| 978 | create: IcuCreateOpCodes, |
| 979 | newIndex: number, |
| 980 | attrName: string, |
| 981 | attrValue: string, |
| 982 | ) { |
| 983 | create.push((newIndex << IcuCreateOpCode.SHIFT_REF) | IcuCreateOpCode.Attr, attrName, attrValue); |
| 984 | } |
| 985 | |
| 986 | function i18nResolveSanitizer(attrName: string, tagName?: string): SanitizerFn | null { |
| 987 | let schemaContext: SecurityContext; |
Tested by
no test coverage detected