I imported the classes this way:
const { LocalDate, TextStyle } = require('js-joda');
console.log(TextStyle);
Output:
undefined
I would like to use it as follows:
const dateTime = LocalDate.now()
dateTime.dayOfWeek().getDisplayName(TextStyle.NARROW_STANDALONE);
The LocalDate
class works as supposed to.
Why TextStyle is undefined ?