Skip to content

@technobuddha > library > String > Deconstruction

Type Alias: SplitWordsOptions

ts
type SplitWordsOptions = {
  delimiter?:   | string
     | RegExp;
};

Defined in: split-words.ts:9

Options for the splitWords function

Properties

PropertyTypeDescriptionDefined in
delimiter?| string | RegExpThe delimiter between wordssrc/split-words.ts:11