Git Product home page Git Product logo

Comments (5)

SebastianLibreros avatar SebastianLibreros commented on July 17, 2024

I have the same problem here:

"moment-duration-format": "^2.2.2"
node --version v8.14.0
nvm version 1.1.7

ReferenceError: window is not defined
node_modules\moment-duration-format\lib\moment-duration-format.js:1723
if (window && window.Intl && window.Intl.NumberFormat) {

from moment-duration-format.

jsmreese avatar jsmreese commented on July 17, 2024

OK OK. Sigh.

from moment-duration-format.

SebastianLibreros avatar SebastianLibreros commented on July 17, 2024

Hello,

I found two temp solutions:

  1. Force package.json to use version 2.2.2 "moment-duration-format": "2.2.2"
    or
  2. Append typeof window !== 'undefined' to condition if (window && window.Intl && window.Intl.NumberFormat) { => if (typeof window !== 'undefined' && window && window.Intl && window.Intl.NumberFormat) {

Ref: webpack/webpack#7112 (comment)

Thanks in advance.

from moment-duration-format.

favna avatar favna commented on July 17, 2024

Got the window error on runkit but locally I get this with v2.3.1 and v2.3.0:

~/Downloads/index.js:4
const dt = moment.duration(process.uptime()).format('DD MM');
                                             ^

TypeError: moment.duration(...).format is not a function
    at Object.<anonymous> (~/Downloads/index.js:4:46)
    at Module._compile (internal/modules/cjs/loader.js:816:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
    at Module.load (internal/modules/cjs/loader.js:685:32)
    at Function.Module._load (internal/modules/cjs/loader.js:620:12)
    at Function.Module.runMain (internal/modules/cjs/loader.js:877:12)
    at internal/main/run_main_module.js:21:11

File content:

const moment = require('moment'); // version 2.24.0
require('moment-duration-format'); // version 2.3.1

const dt = moment.duration(process.uptime()).format('DD MM');

console.log(dt);

Downgrading to 2.2.2 has it work just fine.

from moment-duration-format.

jsmreese avatar jsmreese commented on July 17, 2024

Thanks @hyuraku. I've published version 2.3.2 which should fix this issue.

from moment-duration-format.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.