> For the complete documentation index, see [llms.txt](https://ddzy.gitbook.io/ts-utility-plugins-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ddzy.gitbook.io/ts-utility-plugins-docs/utility/utility-date/now.md).

# now

### 说明

&#x20;获取`1970`至今的毫秒数

### 源码

<https://github.com/ddzy/ts-utility-plugins/tree/master/src/ddzy/utility/date/now>

### 用法

{% code title="now\.test.ts" %}

```typescript
import { now } from "../../utility/date/now";

describe('now', () => {
  test('now should return a timestamp like `Date.now()` and `new Date().getTime()`', () => {
    const expected = {
      type: 'number',
    };

    const result = now();

    expect(typeof result).toBe(expected.type);
  })
})
```

{% endcode %}
