aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/_an-object.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/modules/_an-object.js')
-rw-r--r--node_modules/core-js/modules/_an-object.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/node_modules/core-js/modules/_an-object.js b/node_modules/core-js/modules/_an-object.js
index 59a8a3a36..b1c316cd2 100644
--- a/node_modules/core-js/modules/_an-object.js
+++ b/node_modules/core-js/modules/_an-object.js
@@ -1,5 +1,5 @@
var isObject = require('./_is-object');
-module.exports = function(it){
- if(!isObject(it))throw TypeError(it + ' is not an object!');
+module.exports = function (it) {
+ if (!isObject(it)) throw TypeError(it + ' is not an object!');
return it;
-}; \ No newline at end of file
+};