Skip to content

@technobuddha > library > Array > Operations

Type Alias: ConjoinOptions

ts
type ConjoinOptions = {
  conjunction?: string;
  oxford?: boolean;
  separator?: string;
};

Defined in: conjoin.ts:9

Options for creating a coordinated list with conjoin

Properties

PropertyTypeDefault valueDescriptionDefined in
conjunction?string'and'Conjunction to insert in the last positionsrc/conjoin.ts:14
oxford?booleantrueIf true, use the oxford commasrc/conjoin.ts:19
separator?string','String used to separate valuessrc/conjoin.ts:24