UNPKG

@mondaycom/apps-cli

Version:

A cli tool to manage apps (and monday-code projects) in monday.com

8 lines (7 loc) 199 B
export function validateStringAsSafeInt(value) { if (!/^[1-9]\d*$/.test(value)) { return false; } const valueAsNum = Number(value); return Number.isSafeInteger(valueAsNum); }