You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varGlobalize=require("globalize")Globalize.load(require("cldr-data").entireSupplemental());Globalize.load(require("cldr-data").entireMainFor("en"));Globalize.loadTimeZone(require("iana-tz-data"));varglobalize=Globalize("en"),date=newDate(2001,2-1,3,4,5,6,789);varcheck=function(fmt){console.log(fmt+' ==> '+globalize.dateFormatter({raw: fmt})(date));};check("h''m''s''");// fails, expect 4'5'6' but get 456check("'h''m''s'''");// works, expect h'm's'check("h''''m''''s");// fails, expect 4'5'6 (or 4''5''6, unclear from spec?) but get 456