Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

handlebars-helper-maybe

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

handlebars-helper-maybe

Handlebars helpers for rendering optional values

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by300%
Maintainers
1
Weekly downloads
 
Created
Source

handlebars-helper-maybe

Handlebars helpers for rendering optional values.

npm Version Build Status Test Coverage Dependency Status

Installation

Install using npm:

$ npm install handlebars-helper-maybe

Usage

var Handlebars = require('handlebars');
var MaybeHelpers = require('handlebars-helper-maybe');

Handlebars.registerHelper('isJust', MaybeHelper.isJust);
Handlebars.registerHelper('maybe', MaybeHelper.maybe);

Helpers

{{#isJust}}

Block helper that renders the block if the given value is a Just. If an inverse block is specified, it will be rendered if the value is a Nothing.

Example

{{#isJust value}}
  Just {{this}}
{{else}}
  Nothing
{{/isJust}}

{{maybe}}

Returns the value inside the Maybe. If the argument is a Nothing and the defaultValue option is specified, this will return the provided default value. Otherwise it will return undefined.

Example

{{maybe value defaultValue="Not Available"}}

What's a Maybe?

Known Supported Maybe Implementations

License

MIT

Keywords

FAQs

Package last updated on 28 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc