export function isStrings(...parameters: any[]): boolean {
  return !parameters.some(parameter => !isString(parameter))
}