UNPKG

npm-check-updates

Version:

Find newer versions of dependencies than what your package.json allows

4 lines (3 loc) 192 B
/** Wraps a string by inserting newlines every n characters. Wraps on word break. Default: 92 chars. */ declare const wrap: (s: string, maxLineLength?: number) => string; export default wrap;