@bytebury/sauce - v2.2.0
    Preparing search index...

    @bytebury/sauce - v2.2.0

    sauce 🍅

    A functional base layer for any size application to help get you write clean, safe, and predictable code.

    npm i --save @bytebury/sauce
    
    import { isWhitespace, title } from "@bytebury/sauce";

    function sayHelloTo(name?: string): void {
    if (isWhitespace(name)) {
    console.log("Hello, Guest");
    } else {
    console.log(`Hello, ${title(name)}`);
    }
    }

    You can see all of the available helpers on our documentation website.