astro-ghostcms/.pnpm-store/v3/files/4e/0df5b2456e5ee1a80de1691ad35...

8 lines
188 B
Plaintext

'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';
};