Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maxgfr/rn-date

A zero-dependency library which fixes the date parsing issue in React Native with Android
https://github.com/maxgfr/rn-date

android date date-parsing ios javascript react-native rn-date typescript

Last synced: about 2 months ago
JSON representation

A zero-dependency library which fixes the date parsing issue in React Native with Android

Awesome Lists containing this project

README

        

# rn-date

`rn-date` is a zero-dependency library which fixes the date parsing issue in React Native with Android.

## Installation

```bash
yarn add rn-date
```

## Usage

```ts
import { RnDate } from 'rn-date';

const date = new RnDate('2020-01-01T00:00:00.000Z'); // instead of new Date('2020-01-01T00:00:00.000Z')
```