Files
owl/web/static/libs/snabbdom/src/is.ts
T
Géry Debongnie 3766fbc7b8 reorganize files
2019-01-23 09:45:28 +01:00

5 lines
155 B
TypeScript
Executable File

export const array = Array.isArray;
export function primitive(s: any): s is (string | number) {
return typeof s === 'string' || typeof s === 'number';
}