ts type error

This commit is contained in:
2023-08-19 04:49:49 +00:00
parent ae7701ee18
commit 6cbbc3222a
+1 -1
View File
@@ -1,7 +1,7 @@
import { isInteger, isString } from "lodash-es";
export function simpleSerialize(...values : (string|number)[]): string{
const result = [];
const result: string[] = [];
for(const value of values){
if(isString(value)){
result.push(`str(${value.length},${value})`);