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