aboutsummaryrefslogtreecommitdiff
path: root/node_modules/babylon/lib/util/whitespace.js
blob: ddff0270cb4b643cbe21ae03ed457f704c105b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict";

exports.__esModule = true;
exports.isNewLine = isNewLine;
// Matches a whole line break (where CRLF is considered a single
// line break). Used to count lines.

var lineBreak = exports.lineBreak = /\r\n?|\n|\u2028|\u2029/;
var lineBreakG = exports.lineBreakG = new RegExp(lineBreak.source, "g");

function isNewLine(code) {
  return code === 10 || code === 13 || code === 0x2028 || code === 0x2029;
}

var nonASCIIwhitespace = exports.nonASCIIwhitespace = /[\u1680\u180e\u2000-\u200a\u202f\u205f\u3000\ufeff]/;