UNPKG

nginx-binaries

Version:

A downloader for nginx and njs standalone binaries.

15 lines 417 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.normalizeArch = void 0; const mapping = { arm: 'armv7', arm64: 'aarch64', x32: 'x86', x64: 'x86_64', }; /** * Normalizes the given architecture name to an Alpine architecture name. */ const normalizeArch = (arch) => mapping[arch] || arch; exports.normalizeArch = normalizeArch; //# sourceMappingURL=archName.js.map