Skip to content

Commit 60e7f47

Browse files
committed
feat: Add Type checking when using morphism currying function
1 parent a201572 commit 60e7f47

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

src/morphism.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ const getSchemaForType = (type: any, baseSchema: any) => {
248248
* @param {} type
249249
*
250250
*/
251-
export function morphism(schema: Schema, items?: any, type?: any): typeof type;
251+
export function morphism<TSource, TSchema extends Schema>(schema: TSchema, items?: TSource[]): TSchema[]; // m({},[]) => {}[]
252+
export function morphism<TSource, TSchema extends Schema>(schema: TSchema, items?: TSource): TSchema; // m({},{}) => {}
252253

253254
export function morphism(schema: Schema, items?: any, type?: any): typeof type {
254255
if (items === undefined && type === undefined) {

src/typings.spec.ts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import Morphism, { morphism, Schema } from './morphism';
2+
3+
describe('Morphism', () => {
4+
describe('Currying Function overload', () => {
5+
it('Should return a collection of objects when an array is provided as source', () => {
6+
const schema = { foo: 'bar' };
7+
const res: { foo: string }[] = morphism(schema, [{ bar: 'test' }]);
8+
9+
expect(res.map).toBeDefined();
10+
expect(res[0].foo).toEqual('test');
11+
});
12+
it('Should return a single object matching the schema structure when an object is provided as source', () => {
13+
const schema = { foo: 'bar' };
14+
const res: { foo: string } = morphism(schema, { bar: 'test' });
15+
16+
expect(res.foo).toEqual('test');
17+
});
18+
});
19+
});

0 commit comments

Comments
 (0)