@yozora/invariant
TypeScript icon, indicating that this package has built-in type declarations

2.3.1 • Public • Published

@yozora/invariant


An invariant function, which takes a condition and a optional message value, and throw an error when the given condition fails.

Install

  • npm

    npm install --save @yozora/invariant
  • yarn

    yarn add @yozora/invariant

Usage

  • Syntax

    function invariant(
      condition: boolean,
      message?: string | (() => string),
    ): asserts condition
  • Demo

    import invariant from '@yozora/invariant'
    
    invariant(typeof window !== 'undefined', '`window` is not defined.')
    invariant(typeof window !== 'undefined', () => '`window` is not defined:' + window)

Related

Readme

Keywords

none

Package Sidebar

Install

npm i @yozora/invariant

Weekly Downloads

1

Version

2.3.1

License

MIT

Unpacked Size

15.6 kB

Total Files

8

Last publish

Collaborators

  • lemonclown