-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhelpers.ts
38 lines (32 loc) · 1.44 KB
/
helpers.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import ClassConstructor from './class-constructor';
import { Surrializable } from './surrializable';
export function isInstanceOf(thing: unknown, whitelist: ReadonlyArray<ClassConstructor>) {
return whitelist.some(ctor => thing instanceof ctor);
}
const SURRIALIZABLE_FN_NAME: keyof Surrializable = 'surrialize';
export function isSurrializable(thing: unknown): thing is Surrializable {
return thing && (typeof thing === 'object' || typeof thing === 'function') && typeof (thing as any)[SURRIALIZABLE_FN_NAME] === 'function';
}
function isEcmaScriptClass(constructor: ClassConstructor) {
return constructor.toString().startsWith('class');
}
export function getParamList(constructor: ClassConstructor): string[] {
const splitParams = (params: string) => params.split(',').map(param => param.trim());
const constructorString = constructor.toString();
if (isEcmaScriptClass(constructor)) {
const parametersMatch = /constructor[^(]*\(([^)]*)\)/.exec(constructorString);
if (parametersMatch) {
return splitParams(parametersMatch[1]);
} else {
// Constructor is optional in an es6 class
return [];
}
} else {
const parametersMatch = /function[^(]*\(([^)]*)\)/.exec(constructorString);
if (parametersMatch) {
return splitParams(parametersMatch[1]);
} else {
throw new Error(`Constructor function "${constructor.name}" could not be serialized. Class was defined as: ${constructor.toString()}`);
}
}
}