@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
| Property | Type | Description | Defined in |
|---|---|---|---|
high? | boolean | test for high surrogates (D800-DBFF) | src/is-surrogate.ts:8 |
low? | boolean | test for low surrogates (DC00-DFFF) | src/is-surrogate.ts:10 |