MCPcopy Index your code
hub / github.com/MALSync/MALSync / getRelativeNowText

Method getRelativeNowText

src/utils/IntlWrapper.ts:264–269  ·  view source on GitHub ↗
(style: DurationStyle = 'Duration', options?: DurationFormatOptions)

Source from the content-addressed store, hash-verified

262 }
263
264 getRelativeNowText(style: DurationStyle = 'Duration', options?: DurationFormatOptions) {
265 if (!this.isValidDate()) return '';
266 const relative = new IntlDuration(this.locale);
267 relative.setTimestamp(this.date.getTime(), style);
268 return relative.getRelativeText(options);
269 }
270
271 getRelativeNowFriendlyText(style: DurationStyle = 'Duration', options?: DurationFormatOptions) {
272 if (!this.isValidDate()) return '';

Callers 4

getPredictionTextMethod · 0.95
getLastTextMethod · 0.95

Calls 3

isValidDateMethod · 0.95
setTimestampMethod · 0.95
getRelativeTextMethod · 0.95

Tested by

no test coverage detected