first commit

This commit is contained in:
2026-07-21 16:50:58 +02:00
commit 256599626e
407 changed files with 30489 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{
"name": "@ben-to/testing",
"version": "0.1.0",
"type": "module",
"main": "src/iso-date.ts",
"types": "src/iso-date.ts",
"exports": {
"./iso-date": "./src/iso-date.ts"
}
}
+1
View File
@@ -0,0 +1 @@
export const buildIsoDate = (value: string): string => new Date(value).toISOString();
+7
View File
@@ -0,0 +1,7 @@
{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"composite": true
},
"include": ["src"]
}