install moment in goole dev console

JavaScript
fetch('https://momentjs.com/downloads/moment.min.js')
    .then(response => response.text())
    .then(text => eval(text))

Source

Also in JavaScript: