整合一些一些常用的 js 代码片段

数组去重

1
cosnt newArr = [...new Set(arr)]

判断网页请求是 http 还是 https

1
const isHttp = document.location.protocol === "http:" ? true : false;