mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
13 lines
114 B
Ruby
13 lines
114 B
Ruby
class NilClass
|
|
def empty?
|
|
true
|
|
end
|
|
|
|
def blank?
|
|
true
|
|
end
|
|
|
|
def not_an_integer?
|
|
true
|
|
end
|
|
end
|