日時文字列のフォーマットを変更したい。しかし、moment.js はタイムゾーンをシステムのタイムゾーン (+3) に変更します。
// This is a string:
"2013-09-20 23:59:59 +0100"
// I want to change it to this:
"20-09-2013 23:59:59 +0100"
// This is what I do and what I get. 1 hour is added by force:
moment("2013-09-20 23:59:59 +0100").format("DD-MM-YYYY HH:mm:ss ZZ")
"21-09-2013 01:59:59 +0300"
タイムゾーンを変更せずにフォーマットを変更する方法は?