# tax-date-time

> A collection of utilities for working with dates and times

Latest version **1.2.3** (published 2024-03-22) · ISC license · 0 weekly downloads

## Install

```sh
npm install tax-date-time
pnpm add tax-date-time
yarn add tax-date-time
bun add tax-date-time
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.3 |
| Published | 2024-03-22 |
| First published | 2024-03-16 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 8 |
| Unpacked size | 2.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | kamidpavil |

## Links

- npm: https://www.npmjs.com/package/tax-date-time
- Repository: https://github.com/kamidpavil/tax-date-time
- Homepage: https://github.com/kamidpavil/tax-date-time#readme
- Issues: https://github.com/kamidpavil/tax-date-time/issues
- npm.io page: https://npm.io/package/tax-date-time

## Dependencies (8)

- [vadimtk1-array](https://npm.io/package/vadimtk1-array.md) 1.1.4
- [moment-timezone](https://npm.io/package/moment-timezone.md) ^0.5.36
- [clever-utils-base](https://npm.io/package/clever-utils-base.md) 1.0.0
- [tea-demonstration](https://npm.io/package/tea-demonstration.md) 1.0.0
- [cook-string-random](https://npm.io/package/cook-string-random.md) 1.0.0
- [smart-helpers-love](https://npm.io/package/smart-helpers-love.md) 1.0.0
- [saystellar-essentials](https://npm.io/package/saystellar-essentials.md) 1.0.0
- [kastpitocidanielle-text-crypto](https://npm.io/package/kastpitocidanielle-text-crypto.md) 1.1.4

## Recent versions

- 1.2.3 (latest) — 2024-03-22
- 1.0.0 — 2024-03-16

## README

# Date Time Utils

This module provides utilities for working with dates and times.

## Installation

You can install this module via npm: `npm install date-time-utils`

## Usage

### Convert to Timezone

```javascript
const { convertToTimeZone } = require('date-time-utils');

const dateStr = '2024-03-20 12:00:00';
const fromTimeZone = 'America/New_York';
const toTimeZone = 'Europe/London';

const convertedDateStr = convertToTimeZone(dateStr, fromTimeZone, toTimeZone);
console.log('Converted Date:', convertedDateStr);

---
_Source: https://npm.io/package/tax-date-time · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
