選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Muqriz 48f16bfc3e initail first 4ヶ月前
..
LICENSE initail first 4ヶ月前
README.md initail first 4ヶ月前
index.js initail first 4ヶ月前
package.json initail first 4ヶ月前

README.md

author-regex NPM version

Regular expression for parsing an author string into an object following npm conventions.

This the regex used by parse-authors.

Related

Install

Install with npm

npm i author-regex --save

Install with bower

bower install author-regex --save

Tests

Run

npm test

Usage

var re = require('author-regex');

function authors(str) {
  return re().exec(str);
}
console.log(author('Jon Schlinkert <foo@bar.com> (https://github.com/jonschlinkert)'));

Returns:

[ 'Jon Schlinkert <foo@bar.com> (https://github.com/jonschlinkert)',
  'Jon Schlinkert',
  'foo@bar.com',
  'https://github.com/jonschlinkert',
  index: 0,
  input: 'Jon Schlinkert <foo@bar.com> (https://github.com/jonschlinkert)' ]

Author

Jon Schlinkert

License

Copyright © 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on September 29, 2014.