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

@binquant/exchange

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@binquant/exchange

Exchanges Client

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
21
decreased by-46.15%
Maintainers
1
Weekly downloads
 
Created
Source

moment

NPM version NPM quality Coverage Status Dependencies Build Status Known Vulnerabilities NPM download license issues

A minimalist JavaScript library that parses, validates, manipulates, and displays dates and times for modern browsers with a largely Moment.js-compatible API, written with TypeScript, inspired by Dayjs and Moment.js

moment()
  .startOf('month')
  .add(1, 'day')
  .set('year', 2019)
  .format('YYYY-MM-DD HH:mm:ss');
  • 🕒 Familiar Moment.js API & patterns
  • 💪 Immutable
  • 🔥 Chainable
  • :sparkle: TypeScript
  • 🌐 I18n support (WIP, will be soon)
  • 🔌 Plugin System (WIP, will be soon)

Install

$ npm install @zcorky/moment

Usage

// typescript
import moment from '@zcorky/moment';

moment('2018-08-08'); // parse

moment().format('{YYYY} MM-DDTHH:mm:ss SSS [Z] A'); // display

moment().set('month', 3).month(); // get & set

moment().add(1, 'year'); // manipulate

Relatived

  • dayjs - immutable date time library alternative to Moment.js with the same modern API.
  • moment - Parse, validate, manipulate, and display dates in javascript.
  • luxon - ⏱ A library for working with dates and times in JS.

License

MIT © Moeover

Keywords

FAQs

Package last updated on 14 Nov 2021

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