aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorsiwalikm <[email protected]>2018-11-10 22:22:58 +0530
committersiwalikm <[email protected]>2018-11-10 22:22:58 +0530
commit0f2337112018712e5a2ec5d1bcfc6a1ed104717d (patch)
tree31d6c65d4615f06f2211ceb1b17256525846c25b /lib
parentd3ce6f1a2a9359574e7f31f14d4901648047c45a (diff)
downloadfaker-0f2337112018712e5a2ec5d1bcfc6a1ed104717d.tar.xz
faker-0f2337112018712e5a2ec5d1bcfc6a1ed104717d.zip
initial commit ✨
Diffstat (limited to 'lib')
-rw-r--r--lib/time.js23
1 files changed, 23 insertions, 0 deletions
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;