介紹/info
auto compress img by tinypng when used webpack or vue
This plugin can record the compression and will not recompress the file if it is not updated
適用於vue和webpack的tinypng插件,支持調整圖片尺寸
能夠根據記
計算字符串的實際長度,雙字節字符(包括漢字在內)長度計2,ASCII字符計1
方法1:使用match:
export function getByteLenMatch(data) {
let result = 0;
for (let s of data) {
result += s.match(/[^\\x00-\\xff]/ig) == null ? 1 : 2;
}
r