You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems really weird, because simpleFormat works fine, but humanizeLength invariably fails with the error TypeError: Cannot read property 'humanize' of undefined
constgetText=timeToAdd=>{constnow=moment();constreminderTime=moment().add(timeToAdd,'minutes');constrange=now.twix(reminderTime.format());// range is a time span from the current time to the reminderTimeconsthumanized=range.humanizeLength();// Fails with "TypeError: Cannot read property 'humanize' of undefined"// const humanized = range.simpleFormat(); // Works finereturnhumanized;};
Any thoughts? Thanks for this great project!
The text was updated successfully, but these errors were encountered:
It seems really weird, because
simpleFormat
works fine, buthumanizeLength
invariably fails with the errorTypeError: Cannot read property 'humanize' of undefined
Any thoughts? Thanks for this great project!
The text was updated successfully, but these errors were encountered: