From 0f2337112018712e5a2ec5d1bcfc6a1ed104717d Mon Sep 17 00:00:00 2001 From: siwalikm Date: Sat, 10 Nov 2018 22:22:58 +0530 Subject: =?UTF-8?q?initial=20commit=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/time.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lib/time.js diff --git a/lib/time.js b/lib/time.js new file mode 100644 index 00000000..642d1386 --- /dev/null +++ b/lib/time.js @@ -0,0 +1,23 @@ +/** + * + * @namespace faker.time + */ +var _Time = function (faker) { + var self = this; + + /** + * between + * + * @method faker.time.recent + * @param {number} days + * @param {date} refDate + */ + self.recent = function () { + + }; + + return self; + +}; + +module['exports'] = _Time; -- cgit v1.2.3