New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

dateutils-esm

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dateutils-esm

Lightweight date library for javascript

0.5.0
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Build Status NPM version

Why another date util library

  • Small and not a feature creep
  • Favors immutability - less bugs and easy to chain functions
  • Favors factory methods for creating new instances instead of multi-purpose constructor
  • DateTime can contain only valid dates
  • Instead of one big file there are several small modules for different purposes:
  • Calculations and transformations
  • Formatting
  • Parsing
  • Localizations
  • Ranges
  • continuouscalendar uses this library

Documentation

Creating dates

DateTime.fromDateTime(2010, 12, 15, 14, 35).plusDays(10).toISOString() returns 2010-12-25T14:35:00

Formatting dates

DateFormat.format(DateTime.fromDate(2010, 12, 15), 'Y-m-d') returns 2010-12-15

DateFormat.shortDateFormat(DateTime.now(), DateLocale.CN) returns 2016年08月13日

Documentation

Supported languages

  • English
  • Estonian
  • Finnish
  • Latvian
  • Russian
  • Swedish
  • 简体中文

License

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Keywords

calendar

FAQs

Package last updated on 24 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts