File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const reservedWords = new Set([
1717
1818function escapeReservedWord ( text ) {
1919 return "'" + text + "'" ;
20- } ;
20+ }
2121
2222function model ( ) {
2323 let model = {
@@ -36,16 +36,16 @@ function model() {
3636 snakeCaseReservedWord : 'SnakeCase' ,
3737 pascalCaseReservedWord : 'pascalCase' ,
3838 camelCaseReservedWord : 'CamelCase' ,
39- kebabCaseReservedWord : 'KebabCase' ,
39+ kebabCaseReservedWord : 'KebabCase'
4040 } ;
4141 Object . keys ( lambdas ) . forEach ( key => model [ key ] = lambdas [ key ] ) ;
4242 return model ;
43- } ;
43+ }
4444
4545function renderTmpl ( model , templateStr , partials ) {
4646 let template = Hogan . compile ( templateStr ) ;
4747 return template . render ( model , partials ) ;
48- } ;
48+ }
4949
5050function render ( template ) {
5151 return renderTmpl ( model ( ) , template , { } )
@@ -282,4 +282,5 @@ async function main(){
282282 run ( ) ;
283283}
284284
285- main ( ) ;
285+ main ( ) ;
286+
You can’t perform that action at this time.
0 commit comments