UNPKG

html-attribute-sorter

Version:

An html attribute sorter

12 lines (10 loc) 207 B
export type Strategy = | "alphabetical" | "code-guide" | "idiomatic" | "vuejs" | "custom"; export interface ISortOption { order: Strategy; customRegexes?: string[]; }