Improve readability.

pull/21833/head
Richard Lewis 2017-12-01 16:35:55 +00:00
parent 81f7f805fa
commit 9dabf19d1b
1 changed files with 5 additions and 9 deletions

View File

@ -232,17 +232,13 @@ function onMessage(event) {
* @return {boolean} True if trusted
*/
function trustedEndpoint(origin) {
if (origin) {
if (messageEndpoints.filter(function(endpoint) {
if (endpoint.endpointUrl == origin) {
return true;
}
}).length > 0) {
return true;
}
if (!origin) {
return false;
}
return false;
return messageEndpoints.some((endpoint) => {
return endpoint.endpointUrl === origin;
});
}
/**