Skip to content

janlelis/exists

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 

exists [version] [ci]

Like ActiveSupport's presence, but for Object#null?

For example, this is useful when setting defaults via or: object.exists || other_object

Setup

Add to your Gemfile:

gem 'exists'

Usage

class NullObject
  def null?
    true
  end
end

nil.exists #=> nil
NullObject.new.exists #=> nil
"some object".exists #=> "some object"

MIT License

Copyright (C) 2015 Jan Lelis https://janlelis.com. Released under the MIT license.

About

Turns null objects into nil

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages