/** * Theme JS. * * @package Bootstrap_5 * @since 1.0.0 * @version 1.0.0 * @author kantbtrue * @license GPL-2.0-or-later */ ( function () { 'use strict'; // Moment JS. const momentTimestamp = document.querySelectorAll( '.moment-timestamp' ); for ( let i = 0; i < momentTimestamp.length; i++ ) { momentTimestamp[i].innerHTML = moment( momentTimestamp[i].getAttribute( 'datetime' ) ).fromNow(); } } )();