UNPKG

@sap/generator-cap-project

Version:

Creates a new SAP Cloud Application Programming Model project.

10 lines (9 loc) 239 B
const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789"; export function createBoundary() { let size = 16; let res = ""; while (size--) { res += alphabet[(Math.random() * alphabet.length) << 0]; } return res; }