From 570791447899a3d20e648286b8ad7fbf1324c264 Mon Sep 17 00:00:00 2001
From: Shodhan <saveshodhan@gmail.com>
Date: Tue, 13 Feb 2018 20:35:23 +0530
Subject: [PATCH] Refactoring

-- Removed unwanted data
-- Corrected splitter names passed for calculating time
---
 sorting/natural-time-delta.js | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/sorting/natural-time-delta.js b/sorting/natural-time-delta.js
index f08087f..ff974ca 100644
--- a/sorting/natural-time-delta.js
+++ b/sorting/natural-time-delta.js
@@ -1,6 +1,6 @@
 /**
 * Created by Shodhan Save on Jan 23, 2018.
-* Updated @ Jan 25, 2018
+* Last updated @ Feb 13, 2018
 */
 
 /**
@@ -37,20 +37,20 @@ jQuery.extend(jQuery.fn.dataTableExt.oSort,{
         matches.reverse();
 
         var time_elements = [
-            {"splitter" : "us",  "name" : "microsecond",  "mul" : 1 / 1000 / 1000},
-            {"splitter" : "ms",  "name" : "millisecond",  "mul" : 1 / 1000},
-            {"splitter" : "s",  "name" : "second",  "mul" : 1},
-            {"splitter" : "m",  "name" : "minute",  "mul" : 1 * 60},
-            {"splitter" : "h",  "name" : "hour",    "mul" : 1 * 60 * 60},
-            {"splitter" : "d",  "name" : "day",     "mul" : 1 * 60 * 60 * 24},
-            {"splitter" : "w",  "name" : "week",    "mul" : 1 * 60 * 60 * 24 * 7},
-            {"splitter" : "w",  "name" : "month",    "mul" : 1 * 60 * 60 * 24 * 7 * 30},
-            {"splitter" : "w",  "name" : "year",    "mul" : 1 * 60 * 60 * 24 * 7 * 30 * 12},
-            {"splitter" : "w",  "name" : "decade",    "mul" : 1 * 60 * 60 * 24 * 7 * 30 * 12 * 10},
+            {"name" : "microsecond",    "mul" : 1 / 1000 / 1000},
+            {"name" : "millisecond",    "mul" : 1 / 1000},
+            {"name" : "second",         "mul" : 1},
+            {"name" : "minute",         "mul" : 1 * 60},
+            {"name" : "hour",           "mul" : 1 * 60 * 60},
+            {"name" : "day",            "mul" : 1 * 60 * 60 * 24},
+            {"name" : "week",           "mul" : 1 * 60 * 60 * 24 * 7},
+            {"name" : "month",          "mul" : 1 * 60 * 60 * 24 * 7 * 30},
+            {"name" : "year",           "mul" : 1 * 60 * 60 * 24 * 7 * 30 * 12},
+            {"name" : "decade",         "mul" : 1 * 60 * 60 * 24 * 7 * 30 * 12 * 10},
         ];
 
         time_elements.forEach(function(el, i){
-            var val = format_time_element(matches[i], el["splitter"], el["mul"]);
+            var val = format_time_element(matches[i], el.name, el.mul);
             result += val;
         });