blob: 16df4c4a890918b009cb9575ed70eb6ea76296b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
"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_scalar(mixedVar) {
// eslint-disable-line camelcase
// discuss at: http://locutus.io/php/is_scalar/
// original by: Paulo Freitas
// example 1: is_scalar(186.31)
// returns 1: true
// example 2: is_scalar({0: 'Kevin van Zonneveld'})
// returns 2: false
return (/boolean|number|string/.test(typeof mixedVar === "undefined" ? "undefined" : _typeof(mixedVar))
);
};
//# sourceMappingURL=is_scalar.js.map
|