Skip to content

Instantly share code, notes, and snippets.

@fcrespo82
fcrespo82 / AlertTest.js
Created October 16, 2020 13:09
Scriptable Helper Scripts
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: yellow; icon-glyph: check-double;
let alertUtils = importModule("AlertUtils")
// Ask for input with validation
let input = await alertUtils.askInput({
title: "Enter phone number",
validate: (value) => {
if (isNaN(parseInt(value))) {