本文整理汇总了TypeScript中@es-git/core.concat函数的典型用法代码示例。如果您正苦于以下问题:TypeScript concat函数的具体用法?TypeScript concat怎么用?TypeScript concat使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了concat函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: asyncIteratorToBuffer
export default async function asyncIteratorToBuffer(iterator : AsyncIterableIterator<Uint8Array>){
const body = [];
for await(const chunk of iterator){
body.push(chunk);
}
return concat(...body).buffer as ArrayBuffer
}
示例2: consume
async function consume(stream : AsyncIterableIterator<Uint8Array>){
const result : Uint8Array[] = [];
for await(const chunk of stream){
result.push(chunk);
}
return concat(...result);
}
示例3: encodeTree
export function encodeTree(body : TreeBody) {
return concat(...flatten(Object.keys(body)
.map(key => ({
name: key,
...body[key]
}))
.sort(treeSort)
.map(entry => [encode(`${entry.mode.toString(8)} ${entry.name}\0`), packHash(entry.hash)])));
}
示例4: encodeRaw
export function encodeRaw(type : string, bytes : Uint8Array){
return concat(encode(`${type} ${bytes.length}\0`), bytes);
}
示例5: encodeObject
export default function encodeObject(object : GitObject) : Uint8Array {
const bytes = getBytes(object);
return concat(encode(`${object.type} ${bytes.length}\0`), bytes);
}