mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
0aad09a4ed
Summary: Forms improvements and following new design - New headers - New UI - New right panel options Test Plan: Tests updated Reviewers: georgegevoian, dsagal Reviewed By: georgegevoian Subscribers: dsagal, paulfitz Differential Revision: https://phab.getgrist.com/D4158
12 lines
316 B
TypeScript
12 lines
316 B
TypeScript
import constant = require('lodash/constant');
|
|
import times = require('lodash/times');
|
|
|
|
/**
|
|
* Returns a new array of length count, filled with the given value.
|
|
*/
|
|
export function arrayRepeat<T>(count: number, value: T): T[] {
|
|
return times(count, constant(value));
|
|
}
|
|
|
|
export type MaybePromise<T> = T | Promise<T>;
|