wordwrap-component

wordwrap util

Usage no npm install needed!

<script type="module">
  import wordwrapComponent from 'https://cdn.skypack.dev/wordwrap-component';
</script>

README

wordwrap

wordwrap

Installation

$ component install yields/wordwrap

API

wordwrap(str, max, eol)

wordwrap('Hello, World!', 5, '\n');
// > 'Hello\n, Wor\nld!'

wordwrap(str, max)

wordwrap('Hello, World!', 5);
// > 'Hello\n, Wor\nld!'

Tests

# make test

License

MIT