tablesorter/js/parsers/parser-date.js

40 lines
899 B
JavaScript
Raw Normal View History

2013-03-26 21:05:21 +00:00
/*!
* Extract dates using popular natural language date parsers
2014-10-27 00:11:12 +00:00
* 10/26/2014 (v2.18.0)
2013-03-26 21:05:21 +00:00
*/
/*jshint jquery:true */
;(function($){
"use strict";
/*! Sugar (http://sugarjs.com/dates#comparing_dates)
* demo: http://jsfiddle.net/Mottie/abkNM/4163/
2013-03-26 21:05:21 +00:00
*/
$.tablesorter.addParser({
id: "sugar",
is: function() {
return false;
},
format: function(s) {
var date = Date.create ? Date.create(s) : s ? new Date(s) : s;
return date instanceof Date && isFinite(date) ? date.getTime() : s;
2013-03-26 21:05:21 +00:00
},
type: "numeric"
});
/*! Datejs (http://www.datejs.com/)
* demo: http://jsfiddle.net/Mottie/abkNM/4164/
2013-03-26 21:05:21 +00:00
*/
$.tablesorter.addParser({
id: "datejs",
is: function() {
return false;
},
format: function(s) {
var date = Date.parse ? Date.parse(s) : s ? new Date(s) : s;
return date instanceof Date && isFinite(date) ? date.getTime() : s;
2013-03-26 21:05:21 +00:00
},
type: "numeric"
});
})(jQuery);