UNPKG

anypoint-cli-v4

Version:

Display and interact with the Anypoint Platform from the command line.

16 lines (15 loc) 715 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.testFunction = void 0; const testFunction = () => { const words = ["The sky", "above", "the port", "was", "the color of television", "tuned", "to", "a dead channel", ".", "All", "this happened", "more or less", ".", "I", "had", "the story", "bit by bit", "from various people", "and", "as generally", "happens", "in such cases", "each time", "it", "was", "a different story", ".", "It", "was", "a pleasure", "to", "burn"]; const text = []; let x = 500; while (--x) text.push(words[Math.floor(Math.random() * words.length)]); return text; }; exports.testFunction = testFunction;