snippet-cutter

1.0.0 • Public • Published

Snippet Cutter

Build Status Dependency Status devDependency Status

Returns a subset of a string, composed by complete subsets found using delimeter between min and max length. If no complete subsets are found, returns a subset using length max and ellipsis.

Get Started

npm install snippet-cutter

API

cutter(string, [options])

Returns string processed. The options parameter is optional, but must be an Object if specified, containing zero or more of the following properties:

  • delimiter: String used to split subsets. (String; default: '.')
  • min: Min string length for valid subset match. (Number; default: 1)
  • max: Max string length for valid subset match. (Number; default: 140)
  • ellipsis: Ending string when no complete subset is found. (String; default: '...')

Usage

var cutter = require('snippet-cutter')
 
cutter(string, options)
// → 'result subset of string'

License

See the License file.

Dependencies (1)

Dev Dependencies (1)

Package Sidebar

Install

npm i snippet-cutter

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

7.17 kB

Total Files

6

Last publish

Collaborators

  • grindcode