Forgive me if this sounds like a silly question. I'm currently using vue-moment within my Vue.js application and I have the following code snippet:
<!-- date = '2020-03-23 01:01:01' -->
<span>{{ date | moment('from', 'now') }}</span>
After processing, the value displayed in the span tag shows something like xyz minutes ago
, which is accurate. My confusion lies in how bitwise operators are being used here. Are they really being utilized for bitwise operations or is it something else entirely? How does vue-moment retrieve and parse the date value? This aspect is unclear to me.