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

walli-table-driven

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

walli-table-driven

The table driven engine which respect walli

latest
Source
npmnpm
Version
1.0.4
Version published
Maintainers
1
Created
Source

walli-table-driven

Build status Test coverage NPM version NPM Downloads Prettier Conventional Commits

The table driven engine which respect walli

Installation

npm install walli-table-driven
# or use yarn
yarn add walli-table-driven

Usage

import * as w from 'walli'
import { walliTableDrivenQuery } from 'walli-table-driven'

walliTableDrivenQuery(
  {
    task: 'Do something',
    status: 'done'
  },
  [
    [
      {
        task: w.nil,
        status: 'done'
      },
      {
        ok: true
      }
    ]
  ]
) /* => {
  matched: true,
  result: {
    ok: true
  }
} */

API

walliTableDrivenQuery(value: T, rules: TableRules)

Contributing

  • Fork it!
  • Create your new branch:
    git checkout -b feature-new or git checkout -b fix-which-bug
  • Start your magic work now
  • Make sure npm test passes
  • Commit your changes:
    git commit -am 'feat: some description (close #123)' or git commit -am 'fix: some description (fix #123)'
  • Push to the branch: git push
  • Submit a pull request :)

Authors

This library is written and maintained by imcuttle, moyuyc95@gmail.com.

License

MIT - imcuttle 🐟

Keywords

imcuttle

FAQs

Package last updated on 09 Jun 2021

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