Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug 1342 #1348

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added %n for Date.format + Spec
fixes #1342
  • Loading branch information
Henning Bopp committed Feb 5, 2017
commit 9ceefc692fc36ca96afbb76aed1683074179b2c8
1 change: 1 addition & 0 deletions Source/Types/Date.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ Date.implement({
case 'L': return pad(d.get('ms'), 3);
case 'm': return pad((d.get('mo') + 1), 2);
case 'M': return pad(d.get('min'), 2);
case 'n': return (d.get('mo') + 1);
case 'o': return d.get('ordinal');
case 'p': return Date.getMsg(d.get('ampm'));
case 's': return Math.round(d / 1000);
Expand Down
5 changes: 4 additions & 1 deletion Specs/Types/Date.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,12 @@ describe('Date', function(){
it('should return the month number as two digits', function(){
expect(d.format('%m')).toEqual('11');
});
it('should return the minutes as two digits', function(){
it('should return the minutes as two digits', function(){
expect(d.format('%M')).toEqual('02');
});
it('should return the month as one digit', function(){
expect(d.format('%n')).toEqual('2');
});
it('should return the ordinal, and should be the same as .getOridnal', function(){
expect(d.format('%o')).toEqual(d.get('ordinal'));
});
Expand Down