mirror of
https://github.com/outbackdingo/pangolin.git
synced 2026-01-27 18:20:04 +00:00
8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
export default function stoi(val: any) {
|
|
if (typeof val === "string") {
|
|
return parseInt(val);
|
|
}
|
|
else {
|
|
return val;
|
|
}
|
|
} |