Skip to content

Instantly share code, notes, and snippets.

View malihe1991's full-sized avatar
🐭

Malihe Ghaderi malihe1991

🐭
View GitHub Profile
@pjdietz
pjdietz / rfc3339.js
Last active May 27, 2024 12:25
Format a local date as an RFC 3339 date with timezone
function rfc3339(d) {
function pad(n) {
return n < 10 ? "0" + n : n;
}
function timezoneOffset(offset) {
var sign;
if (offset === 0) {
return "Z";