LoginSignup
9
4

More than 5 years have passed since last update.

[端末依存問題] iOS 10.2 以降で momentjs を使ってる人必見

Posted at

対象プロダクト

プロダクトが iOS 10.2 以降をサポートしていて、 momentjs 2.17.1 を使っているケース

衝撃の新事実

Chrome 55.0.2883.95 (64-bit) で momentjs を実行した場合

moment('2016-12-08').format('YYYY')
// => "2016"
moment('2016-12-8').format('YYYY')
// => "2016"

iOS 10.2 で momentjs を実行した場合

moment('2016-12-08').format('YYYY')
// => "2016"
moment('2016-12-8').format('YYYY')
// => "Invalid date"

まじかよ Σ(゚Д゚!!

9
4
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
4