Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 374 Bytes

.verb.md

File metadata and controls

15 lines (12 loc) · 374 Bytes

Usage

var regex = require('{%= name %}');

var str = 'abc\nCopyright (c) 2013-2015, 2016, Jon Schlinkert.\nxyz';
var matches = str.match(regex());

// matches[0] => 'Copyright (c) 2013-2015, 2016, Jon Schlinkert'
// matches[1] => 'Copyright'
// matches[2] => '(c)'
// matches[3] => '2013-2015, 2016, '
// matches[4] => '2016'
// matches[5] => 'Jon Schlinkert'