This commit is contained in:
2026-04-07 14:50:23 +09:00
commit b4e485502b
4778 changed files with 2017091 additions and 0 deletions

6
safekiso-server/node_modules/snyk/dist/lib/json.d.ts generated vendored Normal file
View File

@@ -0,0 +1,6 @@
/**
* Attempt to json-stringify an object which is potentially very large and might exceed the string limit.
* If it does exceed the string limit, return empty string.
* @param obj the object from which you want to get a JSON string
*/
export declare function jsonStringifyLargeObject(obj: any): string;