Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

parse-year

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

parse-year

Parse a year into its full number value

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26K
decreased by-3.54%
Maintainers
1
Weekly downloads
 
Created
Source

parse-year Build Status

Parse a year into its full number value

Install

$ npm install --save parse-year

Usage

var parseYear = require('parse-year');

parseYear('2015') // 2015
parseYear('15', true) // 2015

API

parseYear(year, [expand], [now]) -> number / undefined

Parses the year, returning undefined if the input was invalid.

year

Required
Type: string / number

The year input to parse.

expand

Type: boolean
Default: false

If true, expand the year from a 1 or 2 digit number into a full year number, e.g. '15' to 2015.

now

Type: date
Default: new Date()

The date from which to calculate the full year. Only used when expand is true.

License

MIT © Ben Drucker

Keywords

FAQs

Package last updated on 02 Jun 2015

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