mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-05-05 02:11:01 +09:00
Hello world
First open source release of Campfire 🎉
This commit is contained in:
7
app/javascript/helpers/string_helpers.js
Normal file
7
app/javascript/helpers/string_helpers.js
Normal file
@@ -0,0 +1,7 @@
|
||||
export function truncateString(string, length, omission = "…") {
|
||||
if (string.length <= length) {
|
||||
return string
|
||||
} else {
|
||||
return string.slice(0, length - omission.length) + omission
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user