libjs-sifter.js 0.6.0+dfsg-1 source package in Ubuntu

Changelog

libjs-sifter.js (0.6.0+dfsg-1) unstable; urgency=medium

  * Update Vcs-* URLs to use salsa.
  * New upstream version 0.6.0+dfsg.
  * Update my email address.
  * Update Standards-Version to 4.5.0.
  * Use debhelper-compat 12.

 -- Sergio Durigan Junior <email address hidden>  Tue, 18 Feb 2020 22:38:41 -0500

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
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libjs-sifter.js_0.6.0+dfsg-1.dsc 2.0 KiB 8855a03a3303ec4cce8027d265e54234f5e918699cb6284e061b31fabde9f29e
libjs-sifter.js_0.6.0+dfsg.orig.tar.xz 74.6 KiB 2fe8b13737da3480c85ef1c6b07dc63eed53166b4c8dfdc97dd89ac4eccb7fc8
libjs-sifter.js_0.6.0+dfsg-1.debian.tar.xz 3.0 KiB 3ca66d6022b3e5667d3571e8fae279db2fac5849309fb48d9f6ffb6a1038b91f

Available diffs

No changes file available.

Binary packages built by this source

libjs-sifter.js: Library for textually searching arrays and hashes of objects

 Sifter is a client and server-side library (via UMD) for textually
 searching arrays and hashes of objects by property – or multiple
 properties. It's designed specifically for autocomplete. The process
 is three-step: score, filter, sort.
 .
  * Supports díåcritîçs.
 .
    For example, if searching for "montana" and an item in the set has
    a value of "montaña", it will still be matched. Sorting will also
    play nicely with diacritics.
 .
  * Smart scoring.
 .
     Items are scored / sorted intelligently depending on where a
     match is found in the string (how close to the beginning) and
     what percentage of the string matches.
 .
  * Multi-field sorting.
 .
     When scores aren't enough to go by – like when getting results
     for an empty query – it can sort by one or more fields. For
     example, sort by a person's first name and last name without
     actually merging the properties to a single string.
 .
  * Nested properties.
 .
     Allows one to search and sort on nested properties so you can
     perform search on complex objects without flattening them simply
     by using dot-notation to reference fields (ie. nested.property).