mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 13:56:05 +08:00
10 lines
162 B
JavaScript
Executable File
10 lines
162 B
JavaScript
Executable File
'use strict';
|
|
|
|
function chunkLength(chunks) {
|
|
return chunks.reduce(function (len, buf) {
|
|
return len + buf.length;
|
|
}, 0);
|
|
}
|
|
|
|
module.exports = chunkLength;
|