UNPKG

@makingchatbots/genesys-cloud-chatbot-tester-cli

Version:

[![npm](https://img.shields.io/npm/v/@makingchatbots/genesys-cloud-chatbot-tester-cli)](https://www.npmjs.com/package/@makingchatbots/genesys-cloud-chatbot-tester-cli) [![Follow me on LinkedIn for updates](https://img.shields.io/badge/Follow%20for%20updat

15 lines (14 loc) 441 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sanitise = sanitise; exports.createFilename = createFilename; const SEPARATOR = '-'; function sanitise(text) { return `${text}` .toLowerCase() .replace(/\s/g, SEPARATOR) .replace(/[^a-z0-9\-_]/gi, ''); } function createFilename(scenarioName) { return sanitise([scenarioName, Date.now()].filter((e) => e).join(SEPARATOR)); }