Socket
Socket
Sign inDemoInstall

pure-conditions

Package Overview
Dependencies
0
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pure-conditions

Utility methods for simple conditions


Version published
Weekly downloads
7.3K
increased by3.67%
Maintainers
2
Install size
56.1 kB
Created
Weekly downloads
 

Readme

Source

pure-conditions

npm build

A set of pure functions.

Table of Contents

Background

The library is a set of functions that can make developement easier by handling the most popular condition statements. Functions are pure, which means that they do not have side effects and have predictible output. The functions are isolated and do not depend on each other which makes it easier for bundlers and compilers to consume them.

Install

npm install pure-conditions

Usage

const { hasDuplicates } = require('pure-conditions')
hasDuplicates(['foo', 'foo']) // true
const { isEmpty } = require('pure-conditions')
isEmpty({ foo: 'bar' }) // false
const { endsWith } = require('pure-conditions')
endsWith('foo bar', 'bar') // true
const { isEmail } = require('pure-conditions')
isEmail('foobar@gmail.com') // true

Maintainers

@emilos

Contributing

Pull requests and issues are always welcome.

License

MIT

Keywords

FAQs

Last updated on 17 Nov 2020

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