New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

function-filter

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

function-filter

Simple AOP using filterable function wrappers

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source
NPM Version License Dependency Status Build Status Code Quality Test Coverage

function-filter

Simple AOP using filterable function wrappers

What is function-filter?

function-filter is an efficient and lightweight way to allow logic to be extended across different concerns of your application. By wrapping a function in a filter, it is possible to dynamically intercept and optionally modify parameter and return values to the underlying function.

In addition, filters can call alternative logic, or nothing at all, depending on the use case.

Some examples of why you may want to do this include:

  • Logging the parameters passed to a critical function before it is called, and the returned value afterwards.
  • Mutating queries to a database resource, to enforce security constraints.
  • Mutating query results, to redact private information.
  • Memoizing expensive functions based on their input parameters.

Installation

npm install function-filter

Usage

Usage under ES5 and ES6 is essentially the same:

ES5:

var filter = require('function-filter').default;
var myFn = filter(function(chain, argA, argB) {
	console.log(argA, argB);
});

myFn("Hello", "World!");
// Hello World!

myFn.addFilter(function(chain, argA, argB) {
	console.log("Originally called with:", argA, argB);
	return chain.next(chain, "Goodbye", argB);
});

myFn("Hello", "World!");
// Originally called with Hello World!
// Goodbye World!

ES6:

import filter from 'function-filter';
const myFn = filter((chain, argA, argB) => {
	console.log(argA, argB);
});

myFn("Hello", "World!");
// Hello World!

myFn.addFilter((chain, argA, argB) => {
	console.log("Originally called with:", argA, argB);
	return chain.next(chain, "Goodbye", argB);
});

myFn("Hello", "World!");
// Originally called with Hello World!
// Goodbye World!

Changelog

This project adheres to Semantic Versioning. For a list of detailed changes, please refer to CHANGELOG.md.

Contributing

Please see CONTRIBUTING.md.

Prior Art

This implementation is heavily inspired by li3's filter system.

License

function-filter is released under the BSD 3-clause “New” License.

FAQs

Package last updated on 25 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts