npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

another-maybe

v1.0.0

Published

Maybe monad for JavaScript.

Downloads

12

Readme

maybe

Just another maybe approach in Javascript. I did this because there was always something small missing everywhere and since it's not hard to create a maybe polyfill I did one on my own.

Since version 0.0.3 this maybe approach supports Promises. So what this means is that if you have an async callback somewhere or multiple async callbacks the maybe will wait for each of those async callbacks until it proceeds. In the how-to part of this readme is an example showing this behavior (last example).

Where to use

You should use this on values where you are not sure if you get anything back. Usually using maybes the right way helps you avoiding if-then-elses.

Installation

npm install another-maybe --save-dev

API

maybe(value)

Constructor takes one argument which can be any kind of type. So basically this value then gets wrapped and reached through.

maybe(value).isNothing()

Returns a boolean if the wrapped value is undefined/null.

maybe(value).is(functionWhichReturnsBoolean)

Returns a maybe which contains depending on the condition a certain value. If the .is was positive the given value will stay. If the .is was negative it'll return an maybe containing an undefined.

maybe(value).map(functionWhichReturnsValue)

Returns a maybe which contains a value returned by the function in .map. The function will be just executed if the value is not null/undefined. If the value is null/undefined the original maybe will be returned.

maybe(value).flatMap(functionWhichReturnsValue)

Returns a raw value which was returned by the function in .flatMap. The function will be just executed if the value is not null/undefined. If the value is null/undefined the original maybe will be returned.

maybe(value).forEach(function)

Returns the original maybe. The function will be executed if the value is not null/undefined.

maybe(value).orElse(functionWhichReturnsValue)

Returns a maybe which contains a value returned by the function in .orElse. The function will be just executed if the value is null/undefined. If the value is not null/undefined the original maybe will be returned.

maybe(value).orValue(anyValueType)

Returns a maybe which contains the value given in .orValue. The value will be just returned if the original value is null/undefined. If the value is not null/undefined the original maybe will be returned.

maybe(value).get()

Returns raw value.

maybe.provider({options})

Returns custom maybe provider. So what you can do for example is that you can exchange the .isNothing condition. So you could do something like this:

const myOwnMaybeProvider = maybe.provider({
    isNothing: (v) => {
        return v === 'test';
    }
});
const value = myOwnMaybeProvider('test').get(); // returns undefined

So as you can see you could for example define 'test' as a undefined/null type in the .isNothing condition.

You can do this for all it's handlers. Right now the handlers include the following methods: isNothing, isPromise and nil.

How to use

Classic default value handling

const value = maybe('originalValue')
    .orValue('alternativeValue')
    .get();

Classic default value handling via callback

const value = maybe('originalValue')
    .orElse(() => 'alternativeValue')
    .get();

Usage of is method

const value = maybe('originalValue')
    .is((v) => v === 'originalValue')
    .orValue('alternativeValue')
    .get();

Usage of map method

const value = maybe('originalValue')
    .map((v) => v + '1')
    .get(); // originalValue1

Usage of for-each method

const value = maybe('originalValue')
    .forEach((v) => console.log(v))
    .get();

Usage in async operation

const test = async () => delayFunction(200);
const value = await maybe('originalValue')
    .map(async (v) => {
        await test();

        return v;
    })
    .orElse(async () => {
        await test();

        return 'alternativeValue';
    })
    .get();

Usage in an advanced async operation

const test = async () => delayFunction(200);
const value = await maybe(1)
    .map(async (v) => {
        await test();

        return v + 1;
    }) // returns Promise with value "2"
    .is(async (v) => {
        return v === 1;
    }) // returns Promise with value undefined
    .orElse(async () => {
        await test();

        return  0;
    }) // returns Promise with value 0
    .forEach((v) => {
        console.log(v);
    })
    .map(async (v) => {
        await test();

        return undefined;
    }) // returns Promise with value undefined
    .forEach((v) => {
        console.log(v);
    })
    .orValue(2) // returns Promise with value 2
    .map(async (v) => {
        await test();

        return v + 1;
    }) // returns Promise with value 3
    .get();

/* end result: value === 3 */