- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
698 B
JavaScript
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;
|
|
};
|