Created
November 15, 2017 10:46
-
-
Save muttoni/eded32021961fcb6951bf29f05355019 to your computer and use it in GitHub Desktop.
Check if Alexa requests supports Render Templates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function supportsDisplay() { | |
var hasDisplay = | |
this.event.context && | |
this.event.context.System && | |
this.event.context.System.device && | |
this.event.context.System.device.supportedInterfaces && | |
this.event.context.System.device.supportedInterfaces.Display | |
return hasDisplay; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment