node-date-now 1.0.1-4 source package in Ubuntu

Changelog

node-date-now (1.0.1-4) unstable; urgency=medium

  * Team upload

  [ Debian Janitor ]
  * Set debhelper-compat version in Build-Depends
  * Set upstream metadata fields: Bug-Submit
  * Remove obsolete fields Contact, Name from debian/upstream/metadata
    (already present in machine-readable debian/copyright)
  * Replace use of deprecated $ADTTMP with $AUTOPKGTEST_TMP
  * Apply multi-arch hints. + node-date-now: Add Multi-Arch: foreign
  * Bump debhelper from old 11 to 13.
    + Drop check for DEB_BUILD_OPTIONS containing "nocheck",
      since debhelper now does this
  * Update standards version to 4.5.1, no changes needed

  [ Yadd ]
  * Update standards version to 4.6.0, no changes needed
  * Add "Rules-Requires-Root: no"
  * Add debian/gbp.conf
  * Modernize debian/watch
    * Fix filenamemangle
    * Fix GitHub tags regex
  * Drop dependency to nodejs
  * Mark test dependencies with <!nocheck>
  * Use dh-sequence-nodejs auto test & install

 -- Yadd <email address hidden>  Sun, 21 Nov 2021 22:50:27 +0100

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-date-now_1.0.1-4.dsc 2.0 KiB e9796a48c4b56c40ae35f55c066bf75bf13e24e5026fc73ec91f07a6c151360e
node-date-now_1.0.1.orig.tar.gz 2.8 KiB d07fcd816bb6237d8a8693f599e3d827f2693d998b2405beaf80f076018268f0
node-date-now_1.0.1-4.debian.tar.xz 3.1 KiB 7edff839e265178fbe4cacde79ef57dc0750d3eb4232b2e526d0acfaddb30671

Available diffs

No changes file available.

Binary packages built by this source

node-date-now: requirable version of Date.now()

 Use-case is to be able to mock out Date.now() using require interception.
 For example
 var now = require("date-now")
 var ts = now()
 var ts2 = Date.now()
 assert.equal(ts, ts2)
 Example of seed:
 var now = require("date-now/seed")(timeStampFromServer)
 // ts is in "sync" with the seed value from the server
 // useful if your users have their local time being a few minutes
 // out of your server time.
 var ts = now()
 .
 Node.js is an event-based server-side JavaScript engine.