Skip to content

Instantly share code, notes, and snippets.

@clystian
Created June 2, 2018 21:29
Show Gist options
  • Save clystian/f7f59d34df42e17639910a20306d0136 to your computer and use it in GitHub Desktop.
Save clystian/f7f59d34df42e17639910a20306d0136 to your computer and use it in GitHub Desktop.
/* keep a reference to original toISOString to use it into new method */
const oldToISOString = Date.prototype.toISOString
/* Define new method */
const toISOString = function toISOString(date) {
if(!date) return date;
/* extract GTM timezone from date.toString() */
const regex = /(?:GMT)([-+]\d*)/gm;
let gtm = regex.exec(date.toString())[1];
gtm = [...gtm];
/* insert ':' in time -0500 -> -05:00*/
gtm.splice(3, 0, ':');
gtm = gtm.join('')
/* replace Z (UTC) to respective TimeZone */
return oldToISOString.apply(date).replace('Z', gtm)
}
/* override toUSOString method using new toISOString */
Date.prototype.toISOString = function(){
return toISOString(this);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment