7 lines
103 B
JavaScript
7 lines
103 B
JavaScript
|
|
||
|
const isSecurePage = () => (
|
||
|
window.location.protocol === 'https:'
|
||
|
);
|
||
|
|
||
|
export default isSecurePage;
|