Utility functions for the envelope library.
Flanks a string with specified left and right delimiters.
The string to flank
The left delimiter
The right delimiter
The flanked string
flanked('hello', '"', '"') // Returns: "hello"flanked('name', "'", "'") // Returns: 'name'flanked('item', '[', ']') // Returns: [item] Copy
flanked('hello', '"', '"') // Returns: "hello"flanked('name', "'", "'") // Returns: 'name'flanked('item', '[', ']') // Returns: [item]
Utility functions for the envelope library.