This package has been deprecated

Author message:

Package does not work as advertised and was discontinued

inspect-f

1.2.2 • Public • Published

inspect-f

NPM Version Dependencies Build Status Code Coverage

Cast a function to string and adjust its indentation. Intended for rendering function bodies in pre-tags or consoles and what have you.

npm install --save inspect-f

Usage

Let's say we have this deeply indented function which uses a 6-space indentation scheme:

          function someDeeplyIndentedFunction(a, b){
                return (
                      a + b
                );
          }

Then the following:

const inspectf = require('inspect-f');
console.log(inspectf(2, someDeeplyIndentedFunction));

Would output:

function someDeeplyIndentedFunction(a, b){
  return (
    a + b
  );
}

Package Sidebar

Install

npm i inspect-f

Weekly Downloads

4,371

Version

1.2.2

License

MIT

Last publish

Collaborators

  • avaq