🚀 Launch Week Day 3:Introducing Supply Chain Attack Campaigns Tracking.Learn More →
Socket
Book a DemoInstallSign in
Socket

handlebars-helper-not

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-not

{{not}} handlebars helper. Conditionally render a block if the condition is false. This block helper is really just a semantic alternative to {{isnt}}

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

{{not}} NPM version

{{not}} handlebars helper, for retrieving a value from your project's package.json.

Overview

Conditionally render a block if the condition is false. This block helper is really just a semantic alternative to {{#isnt}}:

{{#not basename "index"}}
  <title>{{title}} | Assemble</title>
  {{else}}
  <title>Assemble</title>
{{/not}}

Please report any bugs or feature requests, thanks!

Quickstart

Install the helper with: npm install handlebars-helper-not

Assemble config

If you use Assemble config and Grunt, in your Gruntfile simply add handlebars-helper-not to the helpers property in the Assemble task or target options:

grunt.initConfig({
  assemble: {
    options: {
      // the 'handlebars-helper-not' module must also be listed in devDependencies
      // for assemble to automatically resolve the helper
      helpers: ['handlebars-helper-not', 'foo/*.js']
    }
    ...
  }
});

Alternatively, you can register the helper with Assemble by adding handlebars-helper-not to both the devDependencies and the keywords array in your project's package.json.

Note that the 'handlebars-helper-not' module must be listed in both devDependencies and the keywords array for Assemble to automatically resolve the helper.

You can now use begin using the helper in your templates.

Author

Jon Schlinkert

Licensed under the MIT License Copyright (c) Jon Schlinkert, contributors.

Keywords

assemble

FAQs

Package last updated on 22 Nov 2013

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