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

5 uses

	github.com/evanw/esbuild/internal/js_printer (current package)
		js_printer.go#L176: const lastLowSurrogate = 0xDFFF
		js_printer.go#L182: 		return !asciiOnly && c != '\uFEFF' && (c < firstHighSurrogate || c > lastLowSurrogate)
		js_printer.go#L410: 					if c2 >= firstLowSurrogate && c2 <= lastLowSurrogate {
		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 {