Closed EmilJimenez21 closed 1 year ago
Fixed an issue where the provided final char space was not being included in the string builder in the center function.
Prior to fix: ` center("My Plugin", '=', 152);
" My Plugin " `
Post fix: ` center("My Plugin", '=', 152);
"=============== My Plugin ===============" `
Thanks, good notice!
Fixed an issue where the provided final char space was not being included in the string builder in the center function.
Prior to fix: ` center("My Plugin", '=', 152);
" My Plugin " `
Post fix: ` center("My Plugin", '=', 152);
"=============== My Plugin ===============" `