Last active
September 27, 2015 11:08
-
-
Save BigBlueHat/1259891 to your computer and use it in GitHub Desktop.
dateToArray - handy for emitting Cloudant & Apache CouchDB MapReduce keys based on dates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MIT Licensed - http://choosealicense.com/licenses/mit/ | |
function dateToArray(ts, length, utc) { | |
var length = length || 6, | |
d = (typeof ts === 'number' ? new Date(ts) : new Date()), | |
utc = Boolean(utc) || true; | |
if (utc) { | |
return [d.getUTCFullYear(), d.getUTCMonth(), d.getUTCDate(), | |
d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds(), | |
d.getUTCMilliseconds()] | |
.slice(0, length); | |
} else { | |
return [d.getFullYear(), d.getMonth(), d.getDate(), d.getHours(), | |
d.getMinutes(), d.getSeconds(), d.getMilliseconds()] | |
.slice(0, length); | |
} | |
} |
I typically use this now: http://momentjs.com/docs/#/displaying/as-array/
More to include...but then you've got all the moment-us power available. 😸
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In my own code, I converted it to string with
JSON.stringify()
and then split it up with a regex. But I think old versions of "couch" (actually Spidermonkey) don't provide the correct stringification. Also you get a string of a quoted string, so you have to chomp those out, so it's a wash at best I guess.