export function _setSort(this: Stringifiers, obj: Set<any>): string {
  return `${PREFIX.set}:${_arraySort.call(this, Array.from(obj))}`;
}