utility-pickle - v0.1.0
    Preparing search index...

    Class Pickle

    Pickle

    Central static API and namespace for utility functions and transformation pipelines. Aggregates all core utilities (guard, pipe, transformation, regex) under a single, convenient static class. This class is non-instantiable and intended for direct static usage.

    // Transform a string to uppercase
    Pickle.transformation.string.toUpper("hello"); // "HELLO"
    // Check if a value is a string
    Pickle.guard.isString("foo"); // true
    // Build and run a pipeline (adds 1, then multiplies by 2)
    Pickle.pipe.then((x: number) => x + 1).then(x => x * 2).build()(3); // 8
    // Use a predefined regular expression
    Pickle.regex.whitespace.test("abc def"); // true
    Index

    Properties

    guard: typeof Guard = Guard

    Provides access to guard utilities for runtime type and value checks.

    pipe: typeof Pipe = Pipe

    Provides access to pipe composition utilities for function pipelines.

    regex: typeof Regex = Regex

    Provides access to common regular expression patterns.

    transformation: typeof Transformation = Transformation

    Provides access to string and number transformation utilities.