mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
5 lines
155 B
TypeScript
Executable File
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';
|
|
}
|