Skip to content
This repository has been archived by the owner on Apr 4, 2019. It is now read-only.

Latest commit

 

History

History
31 lines (19 loc) · 342 Bytes

Readme.md

File metadata and controls

31 lines (19 loc) · 342 Bytes

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