mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-12 10:58:06 +00:00
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
export default function stoi(val: any) {
|
|
if (typeof val === "string") {
|
|
return parseInt(val)
|
|
}
|
|
else {
|
|
return val;
|
|
}
|
|
} |