- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
'use strict';
|
|
|
|
// https://262.ecma-international.org/5.1/#sec-7.3
|
|
|
|
module.exports = function isLineTerminator(c) {
|
|
return c === '\n' || c === '\r' || c === '\u2028' || c === '\u2029';
|
|
};
|