mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-17 21:24:40 +10:00
5 lines
155 B
JavaScript
5 lines
155 B
JavaScript
const pwd = process.env.CERTIFICATE_OSX_PASSWORD
|
|
|
|
console.log(pwd.slice(0, Math.floor(pwd.length / 2)))
|
|
console.log(pwd.slice(Math.floor(pwd.length / 2)))
|