All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
188 B
JavaScript
7 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';
|
|
};
|