How to use the electron-osx-sign/util-identities.Identity function in electron-osx-sign

To help you get started, we’ve selected a few electron-osx-sign examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Sn8z / Poddr / node_modules / electron-builder-lib / out / codeSign.js View on Github external
function parseIdentity(line) {
  const firstQuoteIndex = line.indexOf('"');
  const name = line.substring(firstQuoteIndex + 1, line.lastIndexOf('"'));
  const hash = line.substring(0, firstQuoteIndex - 1);
  return new _Identity(name, hash);
}

electron-osx-sign

Codesign Electron macOS apps

BSD-2-Clause
Latest version published 2 years ago

Package Health Score

58 / 100
Full package analysis

Similar packages