Socket
Socket
Sign inDemoInstall

@citation-js/date

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@citation-js/date

Date parser and formatter


Version published
Weekly downloads
17K
increased by0.32%
Maintainers
1
Weekly downloads
 
Created
Source

Install

npm install @citation-js/date

Use

let {parse, format} = require('@citation-js/date')

parse('First Last')
// { given: 'First', family: 'Last' }

format({ given: 'First', family: 'Last' })
// 'First Last'

API

parse(String date) -> Object

  • String date: Any date

format(Object date[, String delimiter = '-']) -> String

  • Object date: Any date
  • String delimiter: Separate parts by delimiter

Here, Object (CSL-JSON author format) can have the following properties:

  • date-parts: array with one or two dates, each date being an array of [year, month, day], the last two parts being optional
  • raw: raw date

FAQs

Package last updated on 05 Jan 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc