aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/fn/date
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-08-14 05:01:11 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-08-14 05:02:09 +0200
commit363723fc84f7b8477592e0105aeb331ec9a017af (patch)
tree29f92724f34131bac64d6a318dd7e30612e631c7 /node_modules/core-js/fn/date
parent5634e77ad96bfe1818f6b6ee70b7379652e5487f (diff)
node_modules
Diffstat (limited to 'node_modules/core-js/fn/date')
-rw-r--r--node_modules/core-js/fn/date/index.js2
-rw-r--r--node_modules/core-js/fn/date/now.js2
-rw-r--r--node_modules/core-js/fn/date/to-iso-string.js2
-rw-r--r--node_modules/core-js/fn/date/to-json.js2
-rw-r--r--node_modules/core-js/fn/date/to-primitive.js4
-rw-r--r--node_modules/core-js/fn/date/to-string.js6
6 files changed, 9 insertions, 9 deletions
diff --git a/node_modules/core-js/fn/date/index.js b/node_modules/core-js/fn/date/index.js
index bd9ce0e2d..f2f77657e 100644
--- a/node_modules/core-js/fn/date/index.js
+++ b/node_modules/core-js/fn/date/index.js
@@ -3,4 +3,4 @@ require('../../modules/es6.date.to-json');
require('../../modules/es6.date.to-iso-string');
require('../../modules/es6.date.to-string');
require('../../modules/es6.date.to-primitive');
-module.exports = require('../../modules/_core').Date; \ No newline at end of file
+module.exports = require('../../modules/_core').Date;
diff --git a/node_modules/core-js/fn/date/now.js b/node_modules/core-js/fn/date/now.js
index c70d37ae3..3b72d3904 100644
--- a/node_modules/core-js/fn/date/now.js
+++ b/node_modules/core-js/fn/date/now.js
@@ -1,2 +1,2 @@
require('../../modules/es6.date.now');
-module.exports = require('../../modules/_core').Date.now; \ No newline at end of file
+module.exports = require('../../modules/_core').Date.now;
diff --git a/node_modules/core-js/fn/date/to-iso-string.js b/node_modules/core-js/fn/date/to-iso-string.js
index be4ac2187..f6fc3c3b2 100644
--- a/node_modules/core-js/fn/date/to-iso-string.js
+++ b/node_modules/core-js/fn/date/to-iso-string.js
@@ -1,3 +1,3 @@
require('../../modules/es6.date.to-json');
require('../../modules/es6.date.to-iso-string');
-module.exports = require('../../modules/_core').Date.toISOString; \ No newline at end of file
+module.exports = require('../../modules/_core').Date.toISOString;
diff --git a/node_modules/core-js/fn/date/to-json.js b/node_modules/core-js/fn/date/to-json.js
index 9dc8cc902..3b9e4d5c4 100644
--- a/node_modules/core-js/fn/date/to-json.js
+++ b/node_modules/core-js/fn/date/to-json.js
@@ -1,2 +1,2 @@
require('../../modules/es6.date.to-json');
-module.exports = require('../../modules/_core').Date.toJSON; \ No newline at end of file
+module.exports = require('../../modules/_core').Date.toJSON;
diff --git a/node_modules/core-js/fn/date/to-primitive.js b/node_modules/core-js/fn/date/to-primitive.js
index 4d7471e26..a00a8d0d2 100644
--- a/node_modules/core-js/fn/date/to-primitive.js
+++ b/node_modules/core-js/fn/date/to-primitive.js
@@ -1,5 +1,5 @@
require('../../modules/es6.date.to-primitive');
var toPrimitive = require('../../modules/_date-to-primitive');
-module.exports = function(it, hint){
+module.exports = function (it, hint) {
return toPrimitive.call(it, hint);
-}; \ No newline at end of file
+};
diff --git a/node_modules/core-js/fn/date/to-string.js b/node_modules/core-js/fn/date/to-string.js
index c39d55227..fa6364d02 100644
--- a/node_modules/core-js/fn/date/to-string.js
+++ b/node_modules/core-js/fn/date/to-string.js
@@ -1,5 +1,5 @@
-require('../../modules/es6.date.to-string')
+require('../../modules/es6.date.to-string');
var $toString = Date.prototype.toString;
-module.exports = function toString(it){
+module.exports = function toString(it) {
return $toString.call(it);
-}; \ No newline at end of file
+};