- 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>
22 lines
606 B
JavaScript
22 lines
606 B
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
|
|
var $Uint8Array = GetIntrinsic('%Uint8Array%', true);
|
|
var $Uint32Array = GetIntrinsic('%Uint32Array%', true);
|
|
|
|
var typedArrayBuffer = require('typed-array-buffer');
|
|
|
|
var uInt32 = $Uint32Array && new $Uint32Array([0x12345678]);
|
|
var uInt8 = uInt32 && new $Uint8Array(typedArrayBuffer(uInt32));
|
|
|
|
module.exports = uInt8
|
|
? uInt8[0] === 0x78
|
|
? 'little'
|
|
: uInt8[0] === 0x12
|
|
? 'big'
|
|
: uInt8[0] === 0x34
|
|
? 'mixed' // https://developer.mozilla.org/en-US/docs/Glossary/Endianness
|
|
: 'unknown' // ???
|
|
: 'indeterminate'; // no way to know
|