tessel / t1-runtime

[UNMAINTAINED] Tessel 1 JavaScript runtime.
Other
117 stars 33 forks source link

Moment.js hangs when calling its functions #168

Open johnnyman727 opened 10 years ago

johnnyman727 commented 10 years ago

See this forum post.

jiahuang commented 10 years ago

Moment dies with a stack overflow when it's being instantiated due to #126.

moment.utc tries to make a new moment obj but lang, input, and format are undefined. Those keys get dropped and end up being an invalid object. The moment creator then tries to recreate utc because the inputs were invalid, which then tries to make a new moment obj.