@mrgerardorodriguez asked a good question in this thread:
For my own curiosity, how is capitalize.name resolving to the proper name?
I didn't have an answer, but here is @erikjung's response (source):
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/name
But now that you mention it, it's kind of silly to use name on a reference that happens to be using the same value as its own identifier. It would make more sense if we were doing this:
const helper = require('path/to/helper');
Handlebars.registerHelper(helper.name, helper);
@mrgerardorodriguez asked a good question in this thread:
I didn't have an answer, but here is @erikjung's response (source):