Skip to content

@technobuddha > library > Unicode > Is Surrogate

Type Alias: IsSurrogateOptions

ts
type IsSurrogateOptions = {
  high?: boolean;
  low?: boolean;
};

Defined in: is-surrogate.ts:6

Options for isSurrogate

Properties

PropertyTypeDescriptionDefined in
high?booleantest for high surrogates (D800-DBFF)src/is-surrogate.ts:8
low?booleantest for low surrogates (DC00-DFFF)src/is-surrogate.ts:10