const nonStringSamples: any[] = [
  null,
  undefined,
  false,
  3,
  [],
  { x: 2 },
  new Date(),
];

export { nonStringSamples };
