Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio-main
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
jio-main
Commits
0b8f4cd2
Commit
0b8f4cd2
authored
Dec 18, 2013
by
Marco Mariani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed getDay() -> getDate()
parent
4cba063d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
test/queries/key-schema.tests.js
test/queries/key-schema.tests.js
+1
-1
test/queries/keys.tests.js
test/queries/keys.tests.js
+1
-1
No files found.
test/queries/key-schema.tests.js
View file @
0b8f4cd2
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
return
(
return
(
(
a
.
getFullYear
()
===
b
.
getFullYear
())
&&
(
a
.
getFullYear
()
===
b
.
getFullYear
())
&&
(
a
.
getMonth
()
===
b
.
getMonth
())
&&
(
a
.
getMonth
()
===
b
.
getMonth
())
&&
(
a
.
getDa
y
()
===
b
.
getDay
())
(
a
.
getDa
te
()
===
b
.
getDate
())
);
);
},
},
sameMonth
:
function
(
a
,
b
)
{
sameMonth
:
function
(
a
,
b
)
{
...
...
test/queries/keys.tests.js
View file @
0b8f4cd2
...
@@ -86,7 +86,7 @@
...
@@ -86,7 +86,7 @@
return
(
return
(
(
a
.
getFullYear
()
===
b
.
getFullYear
())
&&
(
a
.
getFullYear
()
===
b
.
getFullYear
())
&&
(
a
.
getMonth
()
===
b
.
getMonth
())
&&
(
a
.
getMonth
()
===
b
.
getMonth
())
&&
(
a
.
getDa
y
()
===
b
.
getDay
())
(
a
.
getDa
te
()
===
b
.
getDate
())
);
);
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment