Guest User

Untitled

a guest
Feb 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. export let isCordovaAvailable = () => {
  2. if (!(<any>window).cordova) {
  3. alert('This is a native feature. Please use a device');
  4. return false;
  5. }
  6. return true;
  7. };
Add Comment
Please, Sign In to add comment