UNPKG

@acurast/cli

Version:

A cli to interact with the Acurast Cloud.

6 lines 182 B
export const shortenString = (str) => { if (str.length <= 10) return str; return str.slice(0, 5) + '...' + str.slice(-5); }; //# sourceMappingURL=shortenString.js.map