Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 330 Bytes

strip.md

File metadata and controls

16 lines (12 loc) · 330 Bytes

Modifier strip

This replaces all repeated spaces and tabs with a single space, or with the supplied string.

{"   one    two   "|strip} => 'one two'

Optional boolean parameter tell to the modifier strip also newline

{"    multi
    line
    text    "|strip:true} => 'multi line text'