github.com/evanw/esbuild/internal/js_printer.Options.ASCIIOnly (field)

10 uses

	github.com/evanw/esbuild/internal/js_printer (current package)
		js_printer.go#L415: 						if p.options.ASCIIOnly {
		js_printer.go#L438: 			case (c >= firstLowSurrogate && c <= lastLowSurrogate) || (p.options.ASCIIOnly && c > 0xFF):
		js_printer.go#L442: 			case p.options.ASCIIOnly:
		js_printer.go#L763: 	return js_lexer.IsIdentifier(name) && (!p.options.ASCIIOnly ||
		js_printer.go#L769: 	return js_lexer.IsIdentifierUTF16(name) && (!p.options.ASCIIOnly ||
		js_printer.go#L775: 	if p.options.ASCIIOnly {
		js_printer.go#L798: 		if p.options.ASCIIOnly && c > lastASCII {
		js_printer.go#L3043: 	ASCIIOnly           bool
		js_printer.go#L3118: 		p.printQuotedUTF8(tree.Directive, options.ASCIIOnly)

	github.com/evanw/esbuild/internal/bundler
		linker.go#L3449: 		ASCIIOnly:           c.options.ASCIIOnly,