summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/var/is_object.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 22:10:16 +0100
committerMarvin Borner2018-11-07 22:10:17 +0100
commit954583f3d56fbfb60321725f13ad092e536e3737 (patch)
treea0505a763797582c61fd8c2f90b422456d8874c9 /node_modules/locutus/php/var/is_object.js
parent1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff)
Removed node_modules
Diffstat (limited to 'node_modules/locutus/php/var/is_object.js')
-rw-r--r--node_modules/locutus/php/var/is_object.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/node_modules/locutus/php/var/is_object.js b/node_modules/locutus/php/var/is_object.js
deleted file mode 100644
index 2b29c92..0000000
--- a/node_modules/locutus/php/var/is_object.js
+++ /dev/null
@@ -1,23 +0,0 @@
-'use strict';
-
-var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
-
-module.exports = function is_object(mixedVar) {
- // eslint-disable-line camelcase
- // discuss at: http://locutus.io/php/is_object/
- // original by: Kevin van Zonneveld (http://kvz.io)
- // improved by: Legaev Andrey
- // improved by: Michael White (http://getsprink.com)
- // example 1: is_object('23')
- // returns 1: false
- // example 2: is_object({foo: 'bar'})
- // returns 2: true
- // example 3: is_object(null)
- // returns 3: false
-
- if (Object.prototype.toString.call(mixedVar) === '[object Array]') {
- return false;
- }
- return mixedVar !== null && (typeof mixedVar === 'undefined' ? 'undefined' : _typeof(mixedVar)) === 'object';
-};
-//# sourceMappingURL=is_object.js.map \ No newline at end of file