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