Files
flights_web_raw/ClientApp/node_modules/is-number-object/index.js
T
gnezim 0a5ab058a6 Initial commit: Aeroflot Flights Web - Angular 12 baseline
- Angular 12 application with PrimeNG components
- 5 existing Cypress e2e test suites
- SCSS styling with BEM naming convention
- i18n support (10 languages)
- Leaflet map integration
- Complete component hierarchy and routing structure

This baseline will be used for Angular → React migration.
2026-04-05 18:47:57 +03:00

30 lines
698 B
JavaScript

'use strict';
var callBound = require('call-bound');
var $numToStr = callBound('Number.prototype.toString');
/** @type {import('.')} */
var tryNumberObject = function tryNumberObject(value) {
try {
$numToStr(value);
return true;
} catch (e) {
return false;
}
};
var $toString = callBound('Object.prototype.toString');
var numClass = '[object Number]';
var hasToStringTag = require('has-tostringtag/shams')();
/** @type {import('.')} */
module.exports = function isNumberObject(value) {
if (typeof value === 'number') {
return true;
}
if (!value || typeof value !== 'object') {
return false;
}
return hasToStringTag ? tryNumberObject(value) : $toString(value) === numClass;
};