function extractAccessoryData()

in app/launch/src/state/factories/initializeState.js [34:48]


function extractAccessoryData(query = {}) {
  const { debug, cloneUrl, htmlUrl, error, showing } = query
  return {
    // Clone To GH Related Keys
    cloneUrl,
    htmlUrl,
    error,

    // Code Preview Related Keys
    showing,

    // Dev Keys
    debug,
  }
}