mediamonks / muban-convert-hbs

Convert Handlebars templates to HTL, django, twig and others.
MIT License
8 stars 6 forks source link

TypeError: convert is not a function #2

Closed karthik2706 closed 6 years ago

karthik2706 commented 6 years ago

Will convert work if i use require rather than import? const convert = require('muban-convert-hbs');

ThaNarie commented 6 years ago

default exports in es6 are exported as a .default, so in es5 you can use this (it's now also added to the readme):

var convert = require('muban-convert-hbs').default;