UNPKG

@sectester/core

Version:

The core package can be used to obtain a config including credentials from different sources, and provide a simplified abstraction to handle events and commands.

6 lines 266 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.truncate = void 0; const truncate = (str, n) => str.length > n ? str.substring(0, n).replace(/\w$/gi, '…') : str; exports.truncate = truncate; //# sourceMappingURL=truncate.js.map