本文整理匯總了TypeScript中ramda.length函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript length函數的具體用法?TypeScript length怎麽用?TypeScript length使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了length函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: wrap
wrap(text: string, columns: number): string {
const wrap = s => this.wrap(s, columns);
const splitAtColumns = R.splitAt(columns);
if (R.length(text) <= columns) {
return text;
}
if (R.not(containsSpaces(text))) {
return R.head(splitAtColumns(text)) + NEW_LINE + wrap(R.last(splitAtColumns(text)));
}
if (SPACE === text[columns]) {
return R.head(splitAtColumns(text)) + NEW_LINE + wrap(R.trim(splitAtColumns(text)[1]));
}
return replaceLastSpace(R.head(splitAtColumns(text))) + wrap(R.last(splitAtColumns(text)));
}
示例2: expect
expect(map.every(middleware => length(middleware) === 2)).toEqual(true);
示例3: length
const step = stepTitle => {
const previousTime = length(steps) === 0 ? 0 : (last(steps) as any).time
const nextTime = elapsed()
steps.push({ title: stepTitle, time: nextTime, delta: nextTime - previousTime })
}
示例4: lte
[rolls => lte(length(rolls), 3), () => 0],