Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

predicates

wookieb49.7kMIT2.0.3TypeScript support: included

Set of various predicates for type checking, assertions, filtering etc

predicates, predicate, type, check, assert, filter

readme

Predicates

Build Status NPM version Coverage Status

Set of various predicates for type checking, simple assertions, filtering etc.

Features

  • written in typescript (with type guards and function overloading)
  • well defined API design principles
  • predicates description every predicate contains a proper description for easier debugging and automatic assertion generation
  • supports simple type checks with unnecessary verbosity
  • every predicate supports currying if possible

Install

npm install predicates

Full API

Example

const is = require('predicates');

is.string(1); // false
is.string('test'); // true

is.undefinedOr(String, undefined); // true
is.undefinedOr(String, 'string'); // true
is.undefinedOr(is.string, undefined); // true
is.undefinedOr(is.string, 'timmy'); // true
is.undefinedOr(is.string)(undefined); // true
is.undefinedOr(is.string)('timmy'); // true

const isPerson = is.structure({
    name: is.string,
    surname: is.undefinedOr(is.string),
    age: is.number
});

isPerson({name: 'Tom', age: 10}); // true
isPerson({surname: 'Welling', age: 100}); // false, lack of name property
const assertName = is.assert(is.string);
const assertSurname = is.assert(is.notBlank);
const assertAge = is.assert(is.undefinedOr(is.positive));

const Person = function(name, surname, age) {
    assertName(name);
    assertSurname(surname);
    assertAge(age);
}

new Person('Tom', 'Welling', 33); // OK!
new Person('Tom', 'Welling'); // OK!
new Person('Tom', '', 33); // Error: Surname must be a string and cannot be emptye

API design

Generated predicates can be called with more than one argument

Most of type checking, utility libraries force you use predicates with only one argument but predicates doesn.t Additionally predicates preserves the context of function call which allows you to create even more powerful logic.

const is = require('predicates');

const isOkToModifyTags = is.all(
    is.arrayOf(is.string), 
    function(tags, previousTags) {
        // no need to save them again if they are the same as previous ones
        return tags.join(',') !== previousTags.join(',');
    }
);

Module.prototype.modifyTags = function(entityId, tags) {
    var previousTags = getTags(entityId);
    if (isOkToModifyTags(tags, previousTags)) {
        this.saveTags(entityId, tags);
    } else {
        // no need to save them again if they are the same as previous ones
    }
}

Prevents stupid mistakes (fail fast)

Predicates checks whether generated predicate is misconfigured and throws an error as fast as possible.

is.startsWith(''); // Error: Prefix cannot be empty
// since that would be true for all strings

is.in([]); // Error: Collection cannot be empty
// always false

That's why it's a good practice to create predicates at the beginning of a module definition to quickly catch any mistake.

// some module
const is = require('predicates');
const isImage = is.in([]); // Error: Collection cannot be empty

// You don't need to run the whole application to get the error that your predicate is wrong
export class Module {

}

Defined and generated predicates will never throw any error

You don't need to check the arguments provided to predicates to make sure they won't cause an error - predicates does it for you.

const isDuck = is.hasProperty('quack');

isDuck(undefined); // false - no error
isDuck(1); // false - no error
isDuck('duck'); // false - no error

is.matches(/.*\.ts/)(100); // false - no error

NOTE! This rule applies only for predicates defined in the library. Any user-defined predicate MAY throw errors (however I don't advise to do so) and predicates will not catch them.

const assertName = is.all(is.string, function(value) {
    if (value === 'admin') {
        throw new Error('Admin is a reserved user name');
    }
});

assertName('admin'); // Error: Admin is a reserved user name

Type guards

Every predicate (if possible) is a type guard

if (is.string(value)) {
   // at this point typescript compiler knows that value is a string 
}

Core types are automatically translated to proper predicate

is.property('foo', is.string)({foo: 'bar'}); // true

// for less verbosity this is possible as well
is.property('foo', String)({foo: 'bar'}); // true
is.arrayOf(String)(['foo']); // true

changelog

Changelog

2.0.3

  • Fixed compatibility with typescript 2.7

2.0.1

  • Fixed #26

2.0.0

  • 2.0.0-rc2 became 2.0.0

2.0.0-rc2

  • Added type guards
  • Added description for all predicates
  • Added assert
  • Decreased verbosity with simple type to predicate mapping

2.0.0-rc1

  • Dropped support for bower, use webpack or any other module bundler
  • Rewritten in typescript for much better code completion and function signature detection
  • Added asyncFunction, generator, map, set, symbol, thenable, weakMap, weakSet, emptyArray, notEmptyArray (#22) predicates
  • Fixed #23

1.0.1

  • Fixed #21

1.0.0-rc.2

  • Added bower support #16

1.0.0-rc.1

  • Provided names for all the functions to make debugging easier #13
  • Added primitive predicate #12
  • Added plainObject predicate #4
  • Added divisible and divisibleWithRemainder predicates
  • Added property predicate #14
  • Added notBlank predicate
  • Improved performance

0.3

  • Fixed path to finite polyfill
  • Better support for is.NaN #11
  • Added notEmpty predicate #9
  • Improved is.false and is.true to accept new Boolean(true/false) as well
  • Fixed behavior of is.object to accept Object.create(null) #10

0.2.1

  • Fix: instanceof renamed to instanceOf

0.2

  • Added information how to use predicates for arguments assertions
  • Added documentation with examples and design rules
  • Added "startsWith" and "endsWith" functions
  • Added type checking for property names for hasOwnProperty and hasProperty predicate
  • Fixed error type declaration for @throws