JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 13
  • Score
    100M100P100Q44867F
  • License MIT

Async and modular application development made easy

Package Exports

  • f_

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (f_) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

f_ (wip)

Async and modular application development made easy.

Build Status Coverage Status Inline docs Codacy Badge Code Climate Dependency Status devDependency Status


Install

npm install f_

Use

const f_ = require('f_');

let f_.getConstructor({
  function_flow: [
    {
      name: 'method1',
      function: function method1() {
        this.f_next();
      }
    },
    {
      name: 'method2',
      function: function method2() {
        this.f_next();
      }
    }
  ]
});

For more information, check out the full documentation here or the documentation generated by JSDoc here.