Here you can find the source of strftime(()
Date.prototype.strftime = (function() { function strftime(format) { var date = this; return (format + "").replace(/%([a-zA-z])/g, function(m, f) { var formatter = Date.formats && Date.formats[f]; if(typeof formatter == "function") { return formatter.call(Date.formats, date); }else if(typeof formatter == "string") { return date.strftime(formatter); }/*from w ww . ja va 2 s. c o m*/ return f; }); } function zeroPad(num) { return (+num < 10 ? "0" : "") + num; } Date.formats = { d:function(date) { return zeroPad(date.getDate()); }, m:function(date) { return zeroPad(date.getMonth() + 1); }, y:function(date) { return zeroPad(date.getYear() % 100); }, Y:function(date) { return date.getFullYear(); }, j:function(date) { var base = new Date(date.getFullYear(), 0, 0), diff = date.getTime() - base.getTime(); return Math.ceil(diff / (60*60*24*1000)); }, F: "%Y-%m-%d", D: "%m/%d/%y" }; return strftime; }());
Date.prototype.strftime = (function () { function strftime(format) { var date = this; return (format + "").replace(/%([a-zA-Z])/g, function (m, f) { var formatter = Date.formats && Date.formats[f]; if (typeof formatter == "function") { return formatter.call(Date.formats, date); } else if (typeof formatter == "string") { return date.strftime(formatter); ...
Date.prototype.strftime = (function() { function strftime(format) { var date = this; return(format + "").replace(/%([a-zA-Z])/g, function(m, f) { var formatter = Date.formats && Date.formats[f]; if (typeof formatter == "function") { return formatter.call(Date.formats, date); } else if (typeof formatter == "string") { ...
Date.prototype.strftime = (function() { function strftime(format) { var date = this; return (format + "").replace(/%([a-zA-Z])/g, function(m, f) { var formatter = Date.formats && Date.formats[f]; if (typeof formatter == "function") { return formatter.call(Date.formats, date); } else if (typeof formatter == "string") { ...
Date.prototype.strftime = (function() { function strftime(format) { var date = this; return (format + "").replace(/%([a-zA-Z])/g, function(m, f) { var formatter = Date.formats && Date.formats[f]; if (typeof formatter === "function") { return formatter.call(Date.formats, date); } else if (typeof formatter === "string") { ...
Date.prototype.strftime = (function(){ function strftime(format){ var date = this; return (format + "").replace(/%([a-zA-Z])/g, function (m, f){ var formatter = Date.formats && Date.formats[f]; if (typeof formatter == "function") return formatter.call(Date.formats, date); ...
Date.prototype.strftime = (function() { function strftime(format) { var date = this; return (format + "").replace(/%([a-zA-Z])/g, function(m, f) { var formatter = Date.formats && Date.formats[f]; if (typeof formatter == "function") { return formatter.call(Date.formats, date); } else if (typeof formatter == "string") { return date.strftime(formatter); ...
Date.prototype.strftime = function() { return function(format) { var date; return date = this; }; };
var isDate = function(obj){ return !!(obj && obj.getTimezoneOffset && obj.setUTCFullYear); Date.prototype.strftime = function(){ function _zero(num){return (num < 10 ) ? "0"+num : ""+num }; return [this.getFullYear()+"", _zero(this.getMonth()+1), _zero(this.getDate()) ].join('-') + " " + [this.getHours(), this.getMinutes(), this.getSeconds()].join(':') if (!String.prototype.supplant) { ...
Date.prototype.strftime = (function () { function strftime(format) { var date = this; return (format + "").replace(/%([a-zA-Z])/g, function (m, f) { var formatter = Date.formats && Date.formats[f]; if (typeof formatter == "function") { return formatter.call(Date.formats, date); } else if (typeof formatter == "string") { ...