const github.com/evanw/esbuild/internal/js_printer.firstLowSurrogate

7 uses

	github.com/evanw/esbuild/internal/js_printer (current package)
		js_printer.go#L175: const firstLowSurrogate = 0xDC00
		js_printer.go#L269: 				hi := firstLowSurrogate + (c & 0x3FF)
		js_printer.go#L410: 					if c2 >= firstLowSurrogate && c2 <= lastLowSurrogate {
		js_printer.go#L411: 						r := (rune(c) << 10) + rune(c2) + (0x10000 - (firstHighSurrogate << 10) - firstLowSurrogate)
		js_printer.go#L438: 			case (c >= firstLowSurrogate && c <= lastLowSurrogate) || (p.options.ASCIIOnly && c > 0xFF):
		js_printer.go#L792: 			if c2 := rune(name[i+1]); c2 >= firstLowSurrogate && c2 <= lastLowSurrogate {
		js_printer.go#L793: 				c = (c << 10) + c2 + (0x10000 - (firstHighSurrogate << 10) - firstLowSurrogate)