Socket
Socket
Sign inDemoInstall

@citation-js/date

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @citation-js/date

Date parser and formatter


Version published
Weekly downloads
13K
decreased by-9.87%
Maintainers
1
Created
Weekly downloads
 

Readme

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

Last updated on 25 Dec 2018

Did you know?

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc