%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
module.exports = function arch () { /** * User agent strings that indicate a 64-bit OS. * See: http://stackoverflow.com/a/13709431/292185 */ var userAgent = navigator.userAgent if ([ 'x86_64', 'x86-64', 'Win64', 'x64;', 'amd64', 'AMD64', 'WOW64', 'x64_64' ].some(function (str) { return userAgent.indexOf(str) > -1 })) { return 'x64' } /** * Platform strings that indicate a 64-bit OS. * See: http://stackoverflow.com/a/19883965/292185 */ var platform = navigator.platform if (platform === 'MacIntel' || platform === 'Linux x86_64') { return 'x64' } /** * CPU class strings that indicate a 64-bit OS. * See: http://stackoverflow.com/a/6267019/292185 */ if (navigator.cpuClass === 'x64') { return 'x64' } /** * If none of the above, assume the architecture is 32-bit. */ return 'x86' }