From 85476aba278928c1855575916eb11257c4cfe84e Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Thu, 16 Apr 2020 11:09:02 +0300 Subject: [PATCH] Remove JSONToDate --- snippets_archive/JSONToDate.md | 19 ------------------- test/JSONToDate.test.js | 9 --------- 2 files changed, 28 deletions(-) delete mode 100644 snippets_archive/JSONToDate.md delete mode 100644 test/JSONToDate.test.js diff --git a/snippets_archive/JSONToDate.md b/snippets_archive/JSONToDate.md deleted file mode 100644 index ae88cb2bc..000000000 --- a/snippets_archive/JSONToDate.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: JSONToDate -tags: object,date,beginner ---- - -Converts a JSON object to a date. - -Use `Date()`, to convert dates in JSON format to readable format (`dd/mm/yyyy`). - -```js -const JSONToDate = arr => { - const dt = new Date(parseInt(arr.toString().substr(6))); - return `${dt.getDate()}/${dt.getMonth() + 1}/${dt.getFullYear()}`; -}; -``` - -```js -JSONToDate(/Date(1489525200000)/); // "14/3/2017" -``` \ No newline at end of file diff --git a/test/JSONToDate.test.js b/test/JSONToDate.test.js deleted file mode 100644 index 97888c08f..000000000 --- a/test/JSONToDate.test.js +++ /dev/null @@ -1,9 +0,0 @@ -const {JSONToDate} = require('./_30s.js'); - -test('JSONToDate is a Function', () => { - expect(JSONToDate).toBeInstanceOf(Function); -}); -test('JSONToDate returns the correct date string', () => { - var reg = new RegExp(`Date(${Date.parse('March 14,2017')})`); - expect(JSONToDate(reg)).toBe('14/3/2017'); -});