Skip to content

Instantly share code, notes, and snippets.

@a-one-d-one
Created April 23, 2018 00:43
Show Gist options
  • Save a-one-d-one/e673e6c5423713282379bbffff8b7dfa to your computer and use it in GitHub Desktop.
Save a-one-d-one/e673e6c5423713282379bbffff8b7dfa to your computer and use it in GitHub Desktop.
module.exports.isPrivateTab = (state, frameKey) => {
const frame = frameStateUtil.getFrameByKey(state, frameKey)
if (frame == null) {
return false
}
return !!frame.get('isPrivate')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment