mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
14 lines
238 B
Ruby
14 lines
238 B
Ruby
class String
|
|
def empty?
|
|
strip == '' ? true : false
|
|
end
|
|
|
|
def shorten(length, usedots=true)
|
|
if usedots
|
|
return self if self.length < length
|
|
"#{self[0..length-3]}..."
|
|
else
|
|
self[0..length]
|
|
end
|
|
end
|
|
end
|