reorganize files

This commit is contained in:
Géry Debongnie
2019-01-22 19:25:12 +01:00
parent 5652ef65ad
commit 3766fbc7b8
101 changed files with 31 additions and 43 deletions
+4
View File
@@ -0,0 +1,4 @@
export const array = Array.isArray;
export function primitive(s: any): s is (string | number) {
return typeof s === 'string' || typeof s === 'number';
}