📄 isLineTerminator.js
/home/palash/git/site/node_modules/es-abstract/helpers/isLineTerminator.js
Language: js • Lines: 7
'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';
};