DEV Community

Discussion on: 1 line of code: How to convert spaces to tabs

Collapse
 
jancizmar profile image
Jan Cizmar

Shorter! 😅

const spacesToTabs = (str, tabsize = 4) =>
    str.replace(/\s{${tabsize}}/g, "\t")
Enter fullscreen mode Exit fullscreen mode