> For the complete documentation index, see [llms.txt](https://type.angular-package.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://type.angular-package.dev/object/are-are.md).

# are: Are {}

## `are: Are {}`

The [`object`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object) consists of **are** prefixed functions.

{% code title="are.object.ts" %}

```typescript
const are: Are = Object.freeze({
  bigint: areBigInt, // From the `5.0.0` version.
  boolean: areBoolean, // From the `5.0.0` version.
  date: areDate, // From the `5.0.0` version.
  defined: areDefined, // From the `5.0.0` version.
  false: areFalse, // From the `5.0.0` version.
  null: areNull, // From the `5.0.0` version.
  number: areNumber, // From the `5.0.0` version.
  regexp: areRegExp, // From the `5.0.0` version.
  string: areString,
  symbol: areSymbol, // From the `5.0.0` version.
  true: areTrue, // From the `5.0.0` version.
  undefined: areUndefined // From the `5.0.0` version.
});
```

{% endcode %}
