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

datemath-to-milliseconds

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

datemath-to-milliseconds

Convert date math strings to milliseconds.

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

datemath-to-milliseconds

Convert any date math string to milliseconds. Check Elastic's documentation for further reading (Note: rounding and conditionals are not supported yet).

Install

npm install datemath-to-milliseconds --save

Examples

var convert = require('datemath-to-milliseconds');

console.log(convert('now-15s'));
// => -15000

console.log(convert('now+5m'));
// => 300000

console.log(convert('now-7h'));
// => -25200000

console.log(convert('now+4d'));
// => 345600000

console.log(convert('now-3w'));
// => -1814400000

console.log(convert('now+2M'));
// => 5184000000

console.log(convert('now-1y'));
// => -31536000000

console.log(convert('now-15s+5m-7h+4d-3w+2M-1y'));
// => -27845715000

Keywords

FAQs

Package last updated on 30 Mar 2016

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