parse-output.js 282 B

1234567891011
  1. #!/usr/bin/env node
  2. // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
  3. // SPDX-License-Identifier: Apache-2.0
  4. // SPDX-License-Identifier: MIT
  5. const json = process.argv[2]
  6. const field = process.argv[3]
  7. const output = JSON.parse(json)
  8. console.log(output[field])