# tableberg/1.1.5/src/utils/index.ts

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 4 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/utils/index.ts
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/src/utils/index.ts
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/src/utils/index.ts#L10-L20`.

```typescript
export const createArray = (size: number) => {
    return Array.from({ length: size }, (_, i) => i);
};

```
