flexible-invariant
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

flexible-invariant 💪💥

flexible-invariant is a flexible alternative to tiny-invariant for building type-safe invariant functions!

flexible-invariant when flexing flexibility counts!

Install

npm install flexible-invariant

Usage

The invariant function takes a value and evaluates its truthiness. If the value is truthy, the function acts as a no-op. Otherwise, it throws an Error.

import { invariant } from 'flexible-invariant'

invariant(truthyValue, 'This should not throw!')

invariant(falsyValue)
// Error('Invariant error')

invariant(falsyValue, 'This will throw!')
// Error('This will throw!')

invariant(falsyValue, () => `This throws the callback's return value!`)
// Error(`This throws the callback's return value!`)

Throwing Custom Exceptions

invariantFactory(exceptionProducer)

Use the invariantFactory function to throw a custom exception.

// utils.ts
import { invariantFactory } from 'flexible-invariant'

const exceptionProducer = (exceptionData: { severity: string; message: string }) => {
  return new Error(`${exceptionData.severity}: ${exceptionData.message}`)
}

export const invariant: (
  condition: any,
  exceptionData: Parameters<typeof exceptionProducer>[0],
) => asserts condition = invariantFactory(exceptionProducer)


// module.ts
import { invariant } from './utils'

invariant(falsyValue, { severity: 'WARN', message: 'Exception data message' })
// Error('WARN: Exception data message')

Credits

Package Sidebar

Install

npm i flexible-invariant

Weekly Downloads

0

Version

2.0.1

License

MIT

Unpacked Size

7.32 kB

Total Files

7

Last publish

Collaborators

  • leumasic