Taiga UI 5.0 is out!

Mapper CDK

GitHub

On this page

Pipe to transform a value with a function

Basic

Transform 10 into Total: 10 ₽

    
      
    
    
      <p>Transform 10 into {{ 10 | tuiMapper: mapper : '₽' }}</p>

    

With array

Transform 1,2,3,4,5 into 3,6,9,12,15

    
      
    
    
      <p>Transform {{ numbers }} into {{ numbers | tuiMapper: mapper : 3 }}</p>