(cs: string, atext: AText, pool: AttributePool)
| 1058 | * @returns {AText} |
| 1059 | */ |
| 1060 | export const applyToAText = (cs: string, atext: AText, pool: AttributePool): AText => ({ |
| 1061 | text: applyToText(cs, atext.text), |
| 1062 | attribs: applyToAttribution(cs, atext.attribs, pool), |
| 1063 | }); |
| 1064 | |
| 1065 | /** |
| 1066 | * Clones a AText structure. |
no test coverage detected