Home Reference Source

js-junk-bucket-repo/predicates.js


function eq( what ){
	return function( obj ){
		return what == obj;
	}
}

module.exports = {
	eq
};