mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 22:00:51 +00:00
8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
export default function stoi(val: any) {
|
|
if (typeof val === "string") {
|
|
return parseInt(val);
|
|
} else {
|
|
return val;
|
|
}
|
|
}
|