MCPcopy Create free account
hub / github.com/TeleBoxOrg/TeleBox_Plugins / toInt

Function toInt

acron/acron.ts:127–130  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

125
126// 转换辅助:在使用时将字符串转 number,写入时存字符串
127function toInt(value: any): number | undefined {
128 const n = Number(value);
129 return Number.isFinite(n) ? Math.trunc(n) : undefined;
130}
131
132function toStrInt(value: any): string | undefined {
133 const n = Number(value);

Callers 2

scheduleTaskFunction · 0.70
AcronPluginClass · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected