Created
June 2, 2018 21:29
-
-
Save clystian/f7f59d34df42e17639910a20306d0136 to your computer and use it in GitHub Desktop.
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
/* 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