mirror of
https://github.com/thelounge/thelounge
synced 2024-12-29 22:03:06 +00:00
8 lines
113 B
JavaScript
8 lines
113 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Handlebars.registerHelper(
|
||
|
"toJSON", function(context) {
|
||
|
return JSON.stringify(context);
|
||
|
}
|
||
|
);
|