node-boolbase 1.0.0+~1.0.0-1 source package in Ubuntu

Changelog

node-boolbase (1.0.0+~1.0.0-1) unstable; urgency=medium

  * Team upload
  * Bump debhelper compatibility level to 13
  * Declare compliance with policy 4.5.1
  * Use dh-sequence-nodejs
  * Update standards version to 4.6.0, no changes needed.
  * Embed typescript definitions

 -- Yadd <email address hidden>  Thu, 14 Oct 2021 11:20:47 +0200

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-boolbase_1.0.0+~1.0.0-1.dsc 2.3 KiB b9c8606fb2854dd326d1ce9c0fce3791ffb05078fd394f5bf9e4442960926633
node-boolbase_1.0.0+~1.0.0.orig-types-boolbase.tar.gz 1.5 KiB d8168b4f14cdae5fb5c926fe83e0c25a5c802cbf82611e3b2e20ce85ec9429ca
node-boolbase_1.0.0+~1.0.0.orig.tar.gz 851 bytes 69628ff8092c5ff940ea4a0f29da98d520615bae138755c9e059033606c6caa8
node-boolbase_1.0.0+~1.0.0-1.debian.tar.xz 3.0 KiB 306b3375fb11d7c4c3521dc935c861968e54ec3db5953eae91b0063ba8888d4f

Available diffs

No changes file available.

Binary packages built by this source

node-boolbase: two functions: One that returns true, one that returns false

 This very simple module provides two basic functions, one that always
 returns true (trueFunc) and one that always returns false (falseFunc).
 .
 By having only a single instance of these functions around, it's possible
 to do some nice optimizations. Eg. CSSselect uses these functions to
 determine whether a selector won't match any elements. If that's the case,
 the DOM doesn't even have to be touched.
 .
 Node.js is an event-based server-side JavaScript engine.