Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add boolean helpers #21

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

Add boolean helpers #21

wants to merge 6 commits into from

Commits on Oct 24, 2019

  1. Add boolean helper 'eq'

    Example: {{#if (eq a b)}}Do something{{/if}}
    vincent-psarga committed Oct 24, 2019
    Configuration menu
    Copy the full SHA
    a728be3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d48f365 View commit details
    Browse the repository at this point in the history
  3. Add boolean helper 'gt' to test if an item is greater than another

        Example: {{#if (gt a b)}}Do something{{/if}}
    vincent-psarga committed Oct 24, 2019
    Configuration menu
    Copy the full SHA
    a8f8dae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bcf22cc View commit details
    Browse the repository at this point in the history
  5. Add boolean helper 'gte' to check is item1 is greater or equal than i…

    …tem2
    
        Example: {{#if (gte a b)}}Do something{{/if}}
    vincent-psarga committed Oct 24, 2019
    Configuration menu
    Copy the full SHA
    79e16fc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    94e0d36 View commit details
    Browse the repository at this point in the history