Skip to content

Instantly share code, notes, and snippets.

View mallowigi's full-sized avatar
🌴
Salut tout le monde les gens!

Elior Boukhobza mallowigi

🌴
Salut tout le monde les gens!
View GitHub Profile
@mallowigi
mallowigi / JSON.parse.coffee
Created May 13, 2014 13:10
JSON parse polyfill
JSON:
parse: (string) ->
if string[0] != "{" && string[0] != "["
return null
else if window.JSON?
window.JSON.parse(string)
else
eval(string)
@mallowigi
mallowigi / millisecondsToHMS.coffee
Last active August 29, 2015 14:01
millisecondsToHMS
millisecondsToHMS: (ms) ->
hms = {
h: Math.floor(ms/(60*60*1000)),
m: Math.floor((ms/60000) % 60),
s: Math.floor((ms/1000) % 60)
}
tc = []
tc.push(hms.h) if (hms.h > 0)
m = hms.m;