UNPKG

ts-data-forge

Version:

[![npm version](https://img.shields.io/npm/v/ts-data-forge.svg)](https://www.npmjs.com/package/ts-data-forge) [![npm downloads](https://img.shields.io/npm/dm/ts-data-forge.svg)](https://www.npmjs.com/package/ts-data-forge) [![License](https://img.shields.

12 lines (8 loc) 262 B
import { length, size } from './array-utils-size.mjs'; describe('size/length', () => { test('size should return the array length', () => { const array = [1, 2, 3]; expect(size(array)).toBe(array.length); expect(length(array)).toBe(3); }); });