mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-31 13:04:03 +00:00
9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
var Handlebars = require('handlebars');
|
|
|
|
module.exports = (function(){
|
|
Handlebars.registerHelper('debug', function(){
|
|
console.group('Handlebar context');
|
|
console.log(this);
|
|
console.groupEnd();
|
|
});
|
|
}).call(this); |