Skip to content

Instantly share code, notes, and snippets.

@radjivF
Created February 16, 2016 23:13
Show Gist options
  • Select an option

  • Save radjivF/c83c1159802376fddcca to your computer and use it in GitHub Desktop.

Select an option

Save radjivF/c83c1159802376fddcca to your computer and use it in GitHub Desktop.

Revisions

  1. radjivF created this gist Feb 16, 2016.
    12 changes: 12 additions & 0 deletions handlebars-helper.coffee
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    handlebars.registerHelper 'json', (context) ->
    JSON.stringify context

    handlebars.registerHelper 'debug', (value) ->
    console.log 'Current Context'
    console.log '===================='
    console.log this
    if value
    console.log 'Value'
    console.log '===================='
    console.log value
    return