Skip to content

hemanth/is-incognito

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is-incognito Build Status

Detects incognito mode.

Install

$ npm install --save is-incognito

Usage

const isIncognito = require('is-incognito');
isIncognito().then(console.log, console.error).catch(console.error);

/*
If Promise is:

* resolved -> 1 
			 'incognito'

* rejected -> 1 || -1 || -2
			 'not incognito' || 'Check failed' || 'Check not implement for this ENV'

*/

License

MIT © Hemanth.HM