JavaScript Cómo saber si el sitio es seguro

if (location.protocol === 'https:') {
    // page is secure
}
DCmax1k