npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

compute-geq

v1.1.0

Published

Computes an element-wise comparison (greater than or equal to) of an array.

Downloads

289

Readme

geq

NPM version Build Status Coverage Status Dependencies

Computes an element-wise comparison (greater than or equal to) of an array.

Installation

$ npm install compute-geq

For use in the browser, use browserify.

Usage

var geq = require( 'compute-geq' );

geq( arr, x[, opts] )

Computes an element-wise comparison (greater than or equal to) for each input array element. x may either be an array of equal length or a single value (number or string).

The function returns an array with a length equal to that of the input array. Each output array element is either 0 or 1. A value of 1 means that an element is greater than or equal to a compared value and 0 means that an element is not greater than or equal to a compared value.

var arr = [ 5, 3, 8, 3, 2 ],
	out;

// Single comparison value:
out = geq( arr, 3 );
// returns [ 1, 1, 1, 1, 0 ]

// Array of comparison values:
out = geq( arr, [ 6, 2, 6, 3, 3 ] );
// returns [ 0, 1, 1, 1, 0 ]

The function accepts the following options:

  • copy: boolean indicating whether to return a new array. Default: true.
  • accessor: accessor function for accessing values in object arrays.

To mutate the input array (e.g., when input values can be discarded or when optimizing memory usage), set the copy option to false.

var arr = [ 5, 3, 8, 3, 2 ];

var out = geq( arr, 3, {
	'copy': false
});
// returns [ 1, 1, 1, 1, 0 ]

console.log( arr === out );
// returns true

For object arrays, provide an accessor function for accessing array values.

var data = [
	['beep', 5],
	['boop', 3],
	['bip', 8],
	['bap', 3],
	['baz', 2]
];

function getValue( d, i ) {
	return d[ 1 ];
}

var out = geq( data, 3, {
	'accessor': getValue
});
// returns [ 1, 1, 1, 1, 0 ]

When comparing values between two object arrays, provide an accessor function which accepts 3 arguments.

var data = [
	['beep', 5],
	['boop', 3],
	['bip', 8],
	['bap', 3],
	['baz', 2]
];

var arr = [
	{'x': 4},
	{'x': 5},
	{'x': 6},
	{'x': 3},
	{'x': 3}
];

function getValue( d, i, j ) {
	if ( j === 0 ) {
		return d[ 1 ];
	}
	return d.x;
}

var out = geq( data, arr, {
	'accessor': getValue
});
// returns [ 1, 0, 1, 1, 0 ]

Note: j corresponds to the input array index, where j=0 is the index for the first input array and j=1 is the index for the second (comparison) input array.

Examples

var geq = require( 'compute-geq' ),
	sum = require( 'compute-sum' );

// Simulate some data...
var data = new Array( 100 );
for ( var i = 0; i < data.length; i++ ) {
	data[ i ] = Math.round( Math.random()*100 );
}

var out = geq( data, 50 );

// Count the number of values greater than or equal to 50...
var count = sum( out );

console.log( 'Total: %d', count );

To run the example code from the top-level application directory,

$ node ./examples/index.js

Tests

Unit

Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:

$ make test

All new feature development should have corresponding unit tests to validate correct functionality.

Test Coverage

This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:

$ make test-cov

Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,

$ make view-cov

License

MIT license.

Copyright

Copyright © 2014-2015. Athan Reines.