factor out tuple logic into from-tuple.ts

This commit is contained in:
Hazelnoot 2024-10-15 14:03:57 -04:00
parent 4e592fb1c9
commit 86a693b182
6 changed files with 33 additions and 12 deletions

View file

@ -0,0 +1,13 @@
import { fromTuple } from '@/misc/from-tuple.js';
describe(fromTuple, () => {
it('should return value when value is not an array', () => {
const value = fromTuple('abc');
expect(value).toBe('abc');
});
it('should return first element when value is an array', () => {
const value = fromTuple(['abc']);
expect(value).toBe('abc');
});
});