Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/sharp/lib/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// Copyright 2013 Lovell Fuller and others. // SPDX-License-Identifier: Apache-2.0 'use strict'; const detectLibc = require('detect-libc'); const env = process.env; module.exports = function () { const arch = env.npm_config_arch || process.arch; const platform = env.npm_config_platform || process.platform; const libc = process.env.npm_config_libc || /* istanbul ignore next */ (detectLibc.isNonGlibcLinuxSync() ? detectLibc.familySync() : ''); const libcId = platform !== 'linux' || libc === detectLibc.GLIBC ? '' : libc; const platformId = [`${platform}${libcId}`]; if (arch === 'arm') { const fallback = process.versions.electron ? '7' : '6'; platformId.push(`armv${env.npm_config_arm_version || process.config.variables.arm_version || fallback}`); } else if (arch === 'arm64') { platformId.push(`arm64v${env.npm_config_arm_version || '8'}`); } else { platformId.push(arch); } return platformId.join('-'); };