Socket
Socket
Sign inDemoInstall

akua

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    akua

make if more elegant


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
39.6 kB
Created
Weekly downloads
 

Readme

Source

Akua

Chainable if!

Akua is a very useful tools! It can solve your nested if-tree, make it become chainable if!

Akua can help you code maintainable if!

Install

npm install akua --save

Use

normal nested if-tree

let normalIf = '';
const normailIfStart = new Date().getTime();
if (conditionA) {
  const tempA = 'tempA';
  normalIf += 'a';
  if (conditionB) {
    normalIf += 'b';
    normalIf += tempA;
    if (conditionC) {
      normalIf += 'c';
      if (conditionD) {
        normalIf += 'd';
        if (conditionE) {
          normalIf += 'e';
        }
      }
    }
  } else {
    normalIf += '!b';
  }

  if (conditionF) {
    normalIf += 'f';
    if (conditionG) {
      normalIf += 'g';
    }
  }
} else {
  normalIf += '!a';
}

akua if

let akuaIf = '';
const ifTree = new akua();
ifTree
.inject(conditionA, 'a', (obj) => {
  obj.tempA = 'tempA';
  akuaIf += 'a';
})
.inject(!conditionA, '!a', (obj) => {
  akuaIf += '!a';
})
.inject(conditionB, 'a->b', (obj) => {
  akuaIf += 'b';
  akuaIf += obj.tempA;
})
.inject(!conditionB, 'a->!b', (obj) => {
  akuaIf += '!b';
})
.inject(conditionC, 'b->c', () => {
  akuaIf += 'c';
})
.inject(conditionD, 'c->d', () => {
  akuaIf += 'd';
})
.inject(conditionE, 'd->e', () => {
  akuaIf += 'e';
})
.inject(conditionF, 'a->f', () => {
  akuaIf += 'f';
})
.inject(conditionG, 'f->g', () => {
  akuaIf += 'g';
})
.parse();

Finally, normalIf === akuaIf, you can git clone this project and npm run test if you doubt!

Unit Test Exampls

  • unit test

Perfomance

npm run test

test: 1000, success: 1000, fail: 0
normal-if cost time: 2ms
akua-if cost time: 7ms
test: 100000, success: 100000, fail: 0
normal-if cost time: 19ms
akua-if cost time: 175ms

Keywords

FAQs

Last updated on 13 Aug 2018

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc