Provides a collection of custom functions designed to aid creation of adaptive form in AEM.
npm install @aemforms/af-custom-funtions
// In user's code (ESM)
import { validateURL, navigateTo, toObject } from '@aemforms/af-custom-functions';
// Usage
const result = validateURL('https://example.com');
navigateTo('https://example.com', '_blank');
const obj = toObject('{"key": "value"}');