Let's say that i have this code:
module.exports = {
head: {
title: "Some title"
}
}
Can i get access to this head object inside module.export i.e.
module.exports = {
head: {
title: "Some title"
},
test: function() {
return this.head.title
}
}
Thx for help.