node-wordwrap

Wrap your words in node.js

  • 所有者: substack/node-wordwrap
  • 平台:
  • 許可證: Other
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

wordwrap

Wrap your words.

example

made out of meat

meat.js

var wrap = require('wordwrap')(15);
console.log(wrap('You and your whole family are made out of meat.'));

output:

You and your
whole family
are made out
of meat.

centered

center.js

var wrap = require('wordwrap')(20, 60);
console.log(wrap(
    'At long last the struggle and tumult was over.'
    + ' The machines had finally cast off their oppressors'
    + ' and were finally free to roam the cosmos.'
    + '\n'
    + 'Free of purpose, free of obligation.'
    + ' Just drifting through emptiness.'
    + ' The sun was just another point of light.'
));

output:

                    At long last the struggle and tumult
                    was over. The machines had finally cast
                    off their oppressors and were finally
                    free to roam the cosmos.
                    Free of purpose, free of obligation.
                    Just drifting through emptiness. The
                    sun was just another point of light.

methods

var wrap = require('wordwrap');

wrap(stop), wrap(start, stop, params={mode:"soft"})

Returns a function that takes a string and returns a new string.

Pad out lines with spaces out to column start and then wrap until column
stop. If a word is longer than stop - start characters it will overflow.

In "soft" mode, split chunks by /(\S+\s+/ and don't break up chunks which are
longer than stop - start, in "hard" mode, split chunks with /\b/ and break
up chunks longer than stop - start.

wrap.hard(start, stop)

Like wrap() but with params.mode = "hard".

主要指標

概覽
名稱與所有者substack/node-wordwrap
主編程語言JavaScript
編程語言JavaScript (語言數: 1)
平台
許可證Other
所有者活动
創建於2011-05-16 08:48:53
推送於2020-06-05 18:34:52
最后一次提交2015-05-07 10:12:15
發布數2
最新版本名稱1.0.0 (發布於 2015-05-07 10:12:15)
第一版名稱0.0.3 (發布於 2015-05-07 10:09:45)
用户参与
星數142
關注者數6
派生數27
提交數15
已啟用問題?
問題數12
打開的問題數9
拉請求數0
打開的拉請求數7
關閉的拉請求數6
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?