index.js 281 B

1234567891011121314
  1. /*!
  2. * author-regex <https://github.com/jonschlinkert/author-regex>
  3. *
  4. * Copyright (c) 2014, 2017, Jon Schlinkert.
  5. * Released under the MIT License.
  6. */
  7. 'use strict';
  8. module.exports = function() {
  9. return /^\s*([^<(]*?)\s*([<(]([^>)]*?)[>)])?\s*([<(]([^>)]*?)[>)])*\s*$/;
  10. };