Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lifts

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lifts

**LI**ghtweight **F**unctional programming library for **T**ype**S**cript

  • 0.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
65
increased by30%
Maintainers
1
Weekly downloads
 
Created
Source

Lifts

LIghtweight Functional programming library for TypeScript

Install

yarn add lifts
# or
npm i -S lifts

Usage

Do

Shorthand for Immediately Invoked Function Expression

const date = new Date('2020-04-17')

const result: number | null = Do(() => {
    // check date is valid
    if (!isNaN(date)) {
        return date.getDate()
    } else {
        return null
    }
})
result // => 17

// equivalent to
const result = (() => {
    if (!isNaN(date)) {
        return date.getDate()
    } else {
        return null
    }
})()

Switch

Object-Style switch

const fn = (value: string) =>
    Switch(value)(
        {
            a: () => 'String A',
            b: () => 'String B',
        },
        () => null, // default value
    )

fn('a') // => 'string A'
fn('b') // => 'string B'
fn('c') // => null (default value)

Result

const parseDate = (dateStr: string): IResult<Date, Error> => {
    const date = new Date(dateStr)

    // check date is valid
    if (!isNaN(date)) {
        return Result.ok(date)
    } else {
        return Result.err(new Error('Invalid Date'))
    }
}

parseDate('2020-04-17')
// => { isOk: true, valueOrError: Date('2020-04-17') }

parseDate('foo')
// => { isOk: false, valueOrError: Error('Invalid Date') }
Result.switch
const result = parseDate('2020-04-17')

Result.switch(result)({
    ok: (value: Date) => {
        // called if result is Ok
        return value.getDate()
    },
    err: (error: Error) => {
        // called if result is Err
        return null
    },
})
// => 17
const result = parseDate('foo')

Result.switch(result)({
    ok: (value) => {
        return value.getDate()
    },
    err: (error) => {
        return null
    },
})
// => null
Result.wrap

Wraps Error with Result.err() if error caught, else wraps value with Result.ok().

const result = Result.wrap(() => {
    if (condition) {
        return true
    } else {
        throw new Error()
    }
})

MapAsync

Pipe

FAQs

Package last updated on 18 Jul 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc