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
.
npm install snippet-cutter
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:'...'
)
var cutter = require('snippet-cutter')
cutter(string, options)
// → 'result subset of string'
See the License file.